-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockopenai.json
27 lines (27 loc) · 912 Bytes
/
mockopenai.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[{
"httpRequest": {
"path": "/v1/engines/davinci/completions",
"method": "POST"
},
"httpResponse": {
"statusCode": 200,
"headers": {
"content-type": [
"application/json"
]
},
"body": {
"id": "cmpl-uqkvlQyYK7bGYrRHQ0eXlWi7",
"object": "text_completion",
"created": 1589478378,
"model": "davinci:2020-05-03",
"choices": [{
"text": "He could sit and contemplate or he could change the world. This wasn't a false dichotomy as the two could go hand.",
"__text_comment": "(from zhammer): this was actually something openai sent back as a completion of one of my & gabe's scribly stories",
"index": 0,
"logprobs": null,
"finish_reason": "length"
}]
}
}
}]