deepseekchat / app.py
hertogateis's picture
Update app.py
023a7b3 verified
raw
history blame
386 Bytes
curl https://api.deepseek.com/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <sk-cb27c81768e443868a194fad0bb91abc>" \
-d '{
"model": "deepseek-chat",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Hello!"}
],
"stream": false
}'