summaryrefslogblamecommitdiffstats
path: root/testing/you_test.py
blob: 9c69cf34ee473b62cbce8063f64e8dfe01fbabb1 (plain) (tree)
1
2
3
4
5
6
7





                                       
                        
























                                                                    
import you

# simple request with links and details
response = you.Completion.create(
    prompt       = "hello world",
    detailed     = True,
    includelinks = 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["response"])
    
    chat.append({"question": prompt, "answer": response["response"]})