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(
|
2024-01-13 14:37:36 +00:00
|
|
|
model=g4f.models.default,
|
|
|
|
provider=g4f.Provider.Bing,
|
2023-10-09 18:53:31 +00:00
|
|
|
messages=[{"role": "user", "content": "write a poem about a tree"}],
|
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(
|
2024-01-13 14:37:36 +00:00
|
|
|
model=g4f.models.default,
|
|
|
|
provider=g4f.Provider.Bing,
|
2023-09-20 12:52:50 +00:00
|
|
|
messages=[{"role": "user", "content": "hello!"}],
|
|
|
|
)
|
|
|
|
print("create_async:", response)
|
|
|
|
|
2024-01-13 14:37:36 +00:00
|
|
|
asyncio.run(run_async())
|