fix you README

pull/284/head
KHELIFI Ahmed Aziz 1 year ago
parent 786dc89ee8
commit 8847f0a4fd

@ -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…
Cancel
Save