summaryrefslogblamecommitdiffstats
path: root/gpt4free/you/README.md
blob: e1917c6dc153a0aff2ab1e0ec5093cc55b5b77e1 (plain) (tree)
1
2
3
4
5
6
7
8


                                                                            

                        


                                       


                         
 
                      








                        
         




                           

                     
                                     


                      
                                
 
                                                              
   
### Example: `you` (use like openai pypi package) <a name="example-you"></a>

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