flask / app.py
Dooratre's picture
Update app.py
51a95a3 verified
raw
history blame
344 Bytes
import os
import g4f
# Install g4f library if not already installed
os.system('pip install g4f')
prompt = 'give em story about Libya in arabic lang'
response = g4f.ChatCompletion.create(
model="gpt-4",
messages=[{"role": "user", "content": prompt}],
stream=True,
)
for message in response:
print(message, flush=True, end='')