36 lines
665 B
Markdown
36 lines
665 B
Markdown
|
### Example: `you` (use like openai pypi package) <a name="example-you"></a>
|
||
|
|
||
|
```python
|
||
|
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"]})
|
||
|
```
|