Model

Hugging Face

Hugging Face

$0

/ M Input

DeepSeek-V2.5-1210

deepseek-ai

Requests

No data

Chat

1curl https://api.targon.com/v1/chat/completions \
2  -H "Content-Type: application/json" \
3  -H "Authorization: Bearer YOUR_API_KEY" \
4  -N \
5  -d '{
6    "model": "DeepSeek-V2.5-1210",
7    "stream": true,
8    "messages": [
9      {"role": "system", "content": "You are a helpful programming assistant."},
10      {"role": "user", "content": "Write a bubble sort implementation in Python with comments explaining how it works"}
11    ],
12    "temperature": 0.7,
13    "max_tokens": 100,
14    "top_p": 1,
15    "frequency_penalty": 0,
16    "presence_penalty": 0
17  }'

Completion

1curl https://api.targon.com/v1/completions \
2  -H "Content-Type: application/json" \
3  -H "Authorization: Bearer YOUR_API_KEY" \
4  -N \
5  -d '{
6    "model": "DeepSeek-V2.5-1210",
7    "stream": true,
8    "prompt": "The x y problem is",
9    "temperature": 0.7,
10    "max_tokens": 100,
11    "top_p": 1,
12    "frequency_penalty": 0,
13    "presence_penalty": 0
14  }'