summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbenying1988@gmail.com <ben>2023-05-19 11:00:27 +0200
committerbenying1988@gmail.com <ben>2023-05-19 11:00:27 +0200
commit2cca6a7cdd87f39468c4d462a2895cb79a77451a (patch)
tree88539d8f179a4180c803a9b4d947075295849309
parentMerge pull request #561 from ading2210/main (diff)
downloadgpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.tar
gpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.tar.gz
gpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.tar.bz2
gpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.tar.lz
gpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.tar.xz
gpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.tar.zst
gpt4free-2cca6a7cdd87f39468c4d462a2895cb79a77451a.zip
-rw-r--r--README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
index 98174965..1159ea98 100644
--- a/README.md
+++ b/README.md
@@ -157,6 +157,32 @@ python3 -m venv venv
pip3 install -r requirements.txt
```
+## Install ffmpeg
+```sh
+sudo apt-get install ffmpeg
+```
+
+## Connect VPN if needed and get proxy (Optional)
+```sh
+echo "$http_proxy" # http://127.0.0.1:8889/
+```
+
+## Set proxy in gpt4free/you/__init__.py (Optional)
+```
+diff --git a/gpt4free/you/__init__.py b/gpt4free/you/__init__.py
+index 11847fb..59d1162 100644
+--- a/gpt4free/you/__init__.py
++++ b/gpt4free/you/__init__.py
+@@ -38,6 +38,7 @@ class Completion:
+ if chat is None:
+ chat = []
+
++ proxy = '127.0.0.1:8889'
+ proxies = {'http': 'http://' + proxy, 'https': 'http://' + proxy} if proxy else {}
+
+ client = Session(client_identifier='chrome_108')
+```
+
## To start gpt4free GUI <a name="streamlit-gpt4free-gui"></a>