mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-05 00:01:00 +00:00
28 lines
509 B
Python
28 lines
509 B
Python
from gpt4free import you
|
|
|
|
# simple request with links and details
|
|
response = you.Completion.create(prompt="hello world", detailed=True, include_links=True)
|
|
|
|
print(response)
|
|
|
|
# {
|
|
# "response": "...",
|
|
# "links": [...],
|
|
# "extra": {...},
|
|
# "slots": {...}
|
|
# }
|
|
# }
|
|
|
|
# chatbot
|
|
|
|
chat = []
|
|
|
|
while True:
|
|
prompt = input("You: ")
|
|
|
|
response = you.Completion.create(prompt=prompt, chat=chat)
|
|
|
|
print("Bot:", response.text)
|
|
|
|
chat.append({"question": prompt, "answer": response.text})
|