diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-29 20:13:54 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-29 20:13:54 +0100 |
commit | 770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0 (patch) | |
tree | cabcbf5fa9a5dbf75a223377dbf032cfeb3e1027 /README.md | |
parent | Add aiohttp_socks to requirements (diff) | |
download | gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.tar gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.tar.gz gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.tar.bz2 gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.tar.lz gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.tar.xz gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.tar.zst gpt4free-770bdc54fc52a71ff56ec0e7f1a38adba01f0ae0.zip |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -103,25 +103,29 @@ Install all supported tools / all used packages: ``` pip install -U g4f[all] ``` -Install packages for uploading / generating images: +Install required packages for the OpenaiChat provider: ``` -pip install -U g4f[image] +pip install -U g4f[openai] ``` -Install the packages required for providers with webdriver: +Install required packages for the interference api: ``` -pip install -U g4f[webdriver] +pip install -U g4f[api] ``` -Install the packages required for the OpenaiChat provider: +Install required packages for the web interface: ``` -pip install -U g4f[openai] +pip install -U g4f[gui] ``` -Install the packages required for the interference api: +Install required packages for uploading / generating images: ``` -pip install -U g4f[api] +pip install -U g4f[image] ``` -Install the packages required for the web gui: +Install required packages for providers with webdriver: ``` -pip install -U g4f[gui] +pip install -U g4f[webdriver] +``` +Install required packages for proxy support: +``` +pip install -U aiohttp_socks ``` ##### or: |