1
0
Fork 0
GPT4FREE/gpt4free/you
Raju Komati 05494ebbb1
refactored code
2023-05-01 20:04:45 +05:30
..
README.md fix you README 2023-04-29 15:51:16 +01:00
__init__.py refactored code 2023-05-01 20:04:45 +05:30

README.md

Example: you (use like openai pypi package)


from gpt4free import you

# simple request with links and details
response = you.Completion.create(
    prompt="hello world",
    detailed=True,
    include_links=True, )

print(response.dict())

# {
#     "response": "...",
#     "links": [...],
#     "extra": {...},
#         "slots": {...}
#     }
# }

# chatbot

chat = []

while True:
    prompt = input("You: ")
    if prompt == 'q':
        break
    response = you.Completion.create(
        prompt=prompt,
        chat=chat)

    print("Bot:", response.text)

    chat.append({"question": prompt, "answer": response.text})