diff options
Diffstat (limited to 'etc/testing')
-rw-r--r-- | etc/testing/test_async.py | 1 | ||||
-rw-r--r-- | etc/testing/test_chat_completion.py | 8 |
2 files changed, 5 insertions, 4 deletions
diff --git a/etc/testing/test_async.py b/etc/testing/test_async.py index 76b109b1..2c15f6b0 100644 --- a/etc/testing/test_async.py +++ b/etc/testing/test_async.py @@ -3,6 +3,7 @@ from pathlib import Path import asyncio sys.path.append(str(Path(__file__).parent.parent)) +sys.path.append(str(Path(__file__).parent.parent.parent)) import g4f from testing.test_providers import get_providers diff --git a/etc/testing/test_chat_completion.py b/etc/testing/test_chat_completion.py index 7600e46b..ee523b86 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 @@ -19,7 +19,7 @@ print() async def run_async(): response = await g4f.ChatCompletion.create_async( model=g4f.models.gpt_35_turbo_16k_0613, - provider=g4f.Provider.Aivvm, + provider=g4f.Provider.GptGod, messages=[{"role": "user", "content": "hello!"}], ) print("create_async:", response) |