summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorabc <98614666+xtekky@users.noreply.github.com>2023-10-01 04:32:51 +0200
committerabc <98614666+xtekky@users.noreply.github.com>2023-10-01 04:32:51 +0200
commit83443ee91288e41ef2c4c710f25cd7f5334e292b (patch)
tree0b24459eb0ea74101d73b2536052ae8fa891e3f7 /testing
parent~ | pypi v-0.1.4.0 `pip install -U g4f` (diff)
parent~ | Merge pull request #954 from Commenter123321/main (diff)
downloadgpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.tar
gpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.tar.gz
gpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.tar.bz2
gpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.tar.lz
gpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.tar.xz
gpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.tar.zst
gpt4free-83443ee91288e41ef2c4c710f25cd7f5334e292b.zip
Diffstat (limited to 'testing')
-rw-r--r--testing/test_chat_completion.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/testing/test_chat_completion.py b/testing/test_chat_completion.py
index d901e697..7600e46b 100644
--- a/testing/test_chat_completion.py
+++ b/testing/test_chat_completion.py
@@ -7,19 +7,21 @@ import g4f, asyncio
print("create:", end=" ", flush=True)
for response in g4f.ChatCompletion.create(
- model=g4f.models.gpt_35_turbo,
- provider=g4f.Provider.GptGo,
- messages=[{"role": "user", "content": "hello!"}],
+ model=g4f.models.gpt_4_32k_0613,
+ provider=g4f.Provider.Aivvm,
+ messages=[{"role": "user", "content": "send a bunch of emojis. i want to test something"}],
+ temperature=0.0,
+ stream=True
):
print(response, end="", flush=True)
print()
async def run_async():
response = await g4f.ChatCompletion.create_async(
- model=g4f.models.gpt_35_turbo,
- provider=g4f.Provider.GptGo,
+ model=g4f.models.gpt_35_turbo_16k_0613,
+ provider=g4f.Provider.Aivvm,
messages=[{"role": "user", "content": "hello!"}],
)
print("create_async:", response)
-asyncio.run(run_async())
+# asyncio.run(run_async())