123456789101112131415161718 |
- @token=sk-sss
- ### gpt-3.5-turbo proxy
- POST /v1/chat/completions HTTP/1.1
- Content-Type: application/json
- Authorization: Bearer {{token}}
- Host: ai.takegpt.cn
- {
- "model": "gpt-3.5-turbo",
- "messages": [{
- "role": "user",
- "content": "宝宝每天咳几声正常吗"
- }],
- "stream" : true,
- "temperature": 0.5
- }
|