summaryrefslogtreecommitdiffstats
path: root/testing/test_chat_completion.py
blob: d901e6975755c6b69816cd5d99447a8ce5a33aa3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import sys
from pathlib import Path

sys.path.append(str(Path(__file__).parent.parent))

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!"}],
):
    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,
        messages=[{"role": "user", "content": "hello!"}],
    )
    print("create_async:", response)

asyncio.run(run_async())