2023-07-28 10:07:17 +00:00
|
|
|
import sys
|
|
|
|
from pathlib import Path
|
|
|
|
|
2023-10-07 02:03:36 +00:00
|
|
|
sys.path.append(str(Path(__file__).parent.parent.parent))
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-09-20 12:52:50 +00:00
|
|
|
import g4f, asyncio
|
2023-07-28 10:07:17 +00:00
|
|
|
|
2023-09-20 12:52:50 +00:00
|
|
|
print("create:", end=" ", flush=True)
|
|
|
|
for response in g4f.ChatCompletion.create(
|
2023-10-09 18:53:31 +00: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 14:54:46 +00:00
|
|
|
stream=True
|
2023-09-20 12:52:50 +00:00
|
|
|
):
|
|
|
|
print(response, end="", flush=True)
|
|
|
|
print()
|
|
|
|
|
|
|
|
async def run_async():
|
|
|
|
response = await g4f.ChatCompletion.create_async(
|
2023-09-29 14:54:46 +00:00
|
|
|
model=g4f.models.gpt_35_turbo_16k_0613,
|
2023-10-07 17:10:26 +00:00
|
|
|
provider=g4f.Provider.GptGod,
|
2023-09-20 12:52:50 +00:00
|
|
|
messages=[{"role": "user", "content": "hello!"}],
|
|
|
|
)
|
|
|
|
print("create_async:", response)
|
|
|
|
|
2023-09-29 14:21:18 +00:00
|
|
|
# asyncio.run(run_async())
|