summaryrefslogtreecommitdiffstats
path: root/examples/openaichat.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/openaichat.py')
-rw-r--r--examples/openaichat.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/openaichat.py b/examples/openaichat.py
deleted file mode 100644
index 291daa2c..00000000
--- a/examples/openaichat.py
+++ /dev/null
@@ -1,23 +0,0 @@
-from g4f.client import Client
-from g4f.Provider import OpenaiChat, RetryProvider
-
-# compatible countries: https://pastebin.com/UK0gT9cn
-client = Client(
- proxies = {
- 'http': 'http://username:password@host:port', # MUST BE WORKING OPENAI COUNTRY PROXY ex: USA
- 'https': 'http://username:password@host:port' # MUST BE WORKING OPENAI COUNTRY PROXY ex: USA
- },
- provider = RetryProvider([OpenaiChat],
- single_provider_retry=True, max_retries=5)
-)
-
-messages = [
- {'role': 'user', 'content': 'Hello'}
-]
-
-response = client.chat.completions.create(model='gpt-3.5-turbo',
- messages=messages,
- stream=True)
-
-for message in response:
- print(message.choices[0].delta.content or "") \ No newline at end of file