1
0
Fork 0
GPT4FREE/you/README.md
naa 81480d0c7e
added an if-statement for ending loop
Instead of pressing Ctrl+c to end program. It is easier and less messy for ending chatbot
2023-04-27 23:48:55 -04:00

668 B

Example: you (use like openai pypi package)

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: ")
    if prompt == 'q':
        break
    response = you.Completion.create(
        prompt=prompt,
        chat=chat)

    print("Bot:", response["response"])

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