Audio-to-Audio
Adapters
chemistry
Wolfai / query.sh
wolfaiOM's picture
Upload folder using huggingface_hub
3f0117b verified
raw
history blame contribute delete
353 Bytes
#!/bin/bash
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
}'