forked from linweiyuan/go-chatgpt-api
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
freeChatgpt.http
62 lines (61 loc) · 1.47 KB
/
freeChatgpt.http
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
### create conversation
#POST {{baseUrl}}/chatgpt/backend-api/conversation
#POST {{baseUrl}}/chatgpt/conversation
#POST {{baseUrl}}/api/conversation
POST https://chatgpt-proxy.leonardpark.dev/api/conversation
Content-Type: application/json
Accept: text/event-stream
{
"action": "next",
"messages": [
{
"id": "aaa27a3c-e498-4fe5-ab1c-1b60e433f190",
"author": {
"role": "user"
},
"content": {
"content_type": "text",
"parts": [
"Give me some news about HK"
]
},
"metadata": {
"serialization_metadata": {
"custom_symbol_offsets": []
}
},
"create_time": 1731865506.298
}
],
"parent_message_id": "",
"model": "auto",
"timezone_offset_min": -480,
"timezone": "Asia/Hong_Kong",
"suggestions": [],
"history_and_training_disabled": false,
"conversation_mode": {
"kind": "primary_assistant"
},
"force_paragen": false,
"force_paragen_model_slug": "",
"force_rate_limit": false,
"reset_rate_limits": false,
"websocket_request_id": "",
"system_hints": [],
"supported_encodings": [
"v1"
],
"conversation_origin": null,
"client_contextual_info": {
"is_dark_mode": true,
"time_since_loaded": 65,
"page_height": 968,
"page_width": 888,
"pixel_ratio": 1,
"screen_height": 1080,
"screen_width": 1920
},
"paragen_stream_type_override": null,
"paragen_cot_summary_display_override": "allow",
"supports_buffering": true
}