summaryrefslogtreecommitdiffstats
path: root/etc/examples/ecosia.py
diff options
context:
space:
mode:
Diffstat (limited to 'etc/examples/ecosia.py')
-rw-r--r--etc/examples/ecosia.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/etc/examples/ecosia.py b/etc/examples/ecosia.py
deleted file mode 100644
index 5a2ae520..00000000
--- a/etc/examples/ecosia.py
+++ /dev/null
@@ -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()) \ No newline at end of file