diff options
Diffstat (limited to '')
-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: |