2023-07-28 13:07:17 +03:00
|
|
|
import sys
|
|
|
|
from pathlib import Path
|
|
|
|
|
2023-10-07 05:03:36 +03:00
|
|
|
sys.path.append(str(Path(__file__).parent.parent.parent))
|
2023-07-28 13:07:17 +03:00
|
|
|
|
2023-09-20 15:52:50 +03:00
|
|
|
import g4f, asyncio
|
2023-07-28 13:07:17 +03:00
|
|
|
|
2023-09-20 15:52:50 +03:00
|
|
|
print("create:", end=" ", flush=True)
|
|
|
|
for response in g4f.ChatCompletion.create(
|
2023-10-09 21:53:31 +03:00
|
|
|
model=g4f.models.gpt_4_32k_0613,
|
|
|
|
provider=g4f.Provider.Aivvm,
|
|
|
|
messages=[{"role": "user", "content": "write a poem about a tree"}],
|
|
|
|
temperature=0.1,
|
2023-09-29 17:54:46 +03:00
|
|
|
stream=True
|
2023-09-20 15:52:50 +03:00
|
|
|
):
|
|
|
|
print(response, end="", flush=True)
|
|
|
|
print()
|
|
|
|
|
|
|
|
async def run_async():
|
|
|
|
response = await g4f.ChatCompletion.create_async(
|
2023-09-29 17:54:46 +03:00
|
|
|
model=g4f.models.gpt_35_turbo_16k_0613,
|
2023-10-07 20:10:26 +03:00
|
|
|
provider=g4f.Provider.GptGod,
|
2023-09-20 15:52:50 +03:00
|
|
|
messages=[{"role": "user", "content": "hello!"}],
|
|
|
|
)
|
|
|
|
print("create_async:", response)
|
|
|
|
|
2023-09-29 17:21:18 +03:00
|
|
|
# asyncio.run(run_async())
|