1
0
Fork 0
GPT4FREE/gpt4free/you/README.md

39 lines
676 B
Markdown
Raw Permalink Normal View History

2023-04-22 12:54:01 +00:00
### Example: `you` (use like openai pypi package) <a name="example-you"></a>
```python
2023-04-29 09:25:24 +00:00
from gpt4free import you
2023-04-22 12:54:01 +00:00
# simple request with links and details
response = you.Completion.create(
prompt="hello world",
detailed=True,
include_links=True, )
2023-04-22 12:54:01 +00:00
2023-04-29 14:51:16 +00:00
print(response.dict())
2023-04-22 12:54:01 +00:00
# {
# "response": "...",
# "links": [...],
# "extra": {...},
# "slots": {...}
# }
# }
# chatbot
2023-04-22 12:54:01 +00:00
chat = []
while True:
prompt = input("You: ")
if prompt == 'q':
break
2023-04-22 12:54:01 +00:00
response = you.Completion.create(
prompt=prompt,
chat=chat)
2023-04-29 14:51:16 +00:00
print("Bot:", response.text)
2023-04-29 14:51:16 +00:00
chat.append({"question": prompt, "answer": response.text})
```