diff options
Diffstat (limited to 'etc/testing')
-rw-r--r-- | etc/testing/test_chat_completion.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/testing/test_chat_completion.py b/etc/testing/test_chat_completion.py index 7600e46b..d5fb5b29 100644 --- a/etc/testing/test_chat_completion.py +++ b/etc/testing/test_chat_completion.py @@ -1,14 +1,14 @@ import sys from pathlib import Path -sys.path.append(str(Path(__file__).parent.parent)) +sys.path.append(str(Path(__file__).parent.parent.parent)) import g4f, asyncio print("create:", end=" ", flush=True) for response in g4f.ChatCompletion.create( - model=g4f.models.gpt_4_32k_0613, - provider=g4f.Provider.Aivvm, + model=g4f.models.default, + provider=g4f.Provider.GptForLove, messages=[{"role": "user", "content": "send a bunch of emojis. i want to test something"}], temperature=0.0, stream=True |