remove ecosia

This commit is contained in:
abc 2024-05-31 16:17:34 +01:00
parent ae404d720d
commit dd409d3f1a
5 changed files with 0 additions and 70 deletions

View file

@ -1,18 +0,0 @@
import asyncio
import g4f
from g4f.client import AsyncClient
async def main():
client = AsyncClient(
provider=g4f.Provider.Ecosia,
)
async for chunk in client.chat.completions.create(
[{"role": "user", "content": "happy dogs on work. write some lines"}],
g4f.models.default,
stream=True,
green=True,
):
print(chunk.choices[0].delta.content or "", end="")
print(f"\nwith {chunk.model}")
asyncio.run(main())