summaryrefslogtreecommitdiffstats
path: root/gpt4free/aiassist/README.md
blob: 029048650a746510f2b6d74a933b28c1943ca5ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
aiassist.site

### Example: `aiassist` <a name="example-assist></a>

```python
import aiassist

question1 = "Who won the world series in 2020?"
req = aiassist.Completion.create(prompt=question1)
answer = req["text"]
message_id = req["parentMessageId"]

question2 = "Where was it played?"
req2 = aiassist.Completion.create(prompt=question2, parentMessageId=message_id)
answer2 = req2["text"]

print(answer)
print(answer2)
```