summaryrefslogblamecommitdiffstats
path: root/testing/you_test.py
blob: 1e9f620507a3bb4ff5e546cf693cfe3764ac437f (plain) (tree)
1
2
3
4
                        

                                       
                                                                                         










                        
         




                           


                                                              
                                
 
                                                              
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})