mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
Merge pull request #284 from ahmedazizkhelifi/fix-readme-examples
fix you README
This commit is contained in:
commit
22b9b1fc69
@ -10,7 +10,7 @@ response = you.Completion.create(
|
||||
detailed=True,
|
||||
include_links=True, )
|
||||
|
||||
print(response)
|
||||
print(response.dict())
|
||||
|
||||
# {
|
||||
# "response": "...",
|
||||
@ -32,7 +32,7 @@ while True:
|
||||
prompt=prompt,
|
||||
chat=chat)
|
||||
|
||||
print("Bot:", response["response"])
|
||||
print("Bot:", response.text)
|
||||
|
||||
chat.append({"question": prompt, "answer": response["response"]})
|
||||
chat.append({"question": prompt, "answer": response.text})
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user