| curl https://api.deepseek.com/chat/completions \ | |
| -H "Content-Type: application/json" \ | |
| -H "Authorization: Bearer sk-94af74f2b4fe4e98a8b1ec389dc6ec4b" \ | |
| -d '{ | |
| "model": "deepseek-reasoner", | |
| "messages": [ | |
| {"role": "system", "content": "You are a helpful assistant."}, | |
| {"role": "user", "content": "Hello!"} | |
| ], | |
| "stream": false | |
| }' | |