diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-15 19:10:25 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-15 19:10:25 +0200 |
commit | c1adfbee8e15406dbdce75f87de47dc1c0dd17df (patch) | |
tree | ec8be1ecf785cfd2f8dd0c5592b0e79a291116e0 /README.md | |
parent | ~ (diff) | |
download | gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.gz gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.bz2 gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.lz gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.xz gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.tar.zst gpt4free-c1adfbee8e15406dbdce75f87de47dc1c0dd17df.zip |
Diffstat (limited to '')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -325,12 +325,12 @@ asyncio.run(run_all()) ##### Proxy Support: -All providers support specifying a proxy in the create function. +All providers support specifying a proxy in the create functions. ```py import g4f -response = await g4f.ChatCompletion.create( +response = g4f.ChatCompletion.create( model=g4f.models.default, messages=[{"role": "user", "content": "Hello"}], proxy="http://host:port", |