<div align="center"> <img src="https://github.com/deepseek-ai/DeepSeek-V2/blob/main/figures/logo.svg?raw=true" width="60%" alt="DeepSeek-V2" /> </div> <hr> <div align="center" style="line-height: 1;"> <a href="https://www.deepseek.com/" target="_blank" style="margin: 2px;"> <img alt="Homepage" src="https://github.com/deepseek-ai/DeepSeek-V2/blob/main/figures/badge.svg?raw=true" style="display: inline-block; vertical-align: middle;"/> </a> <a href="https://chat.deepseek.com/" target="_blank" style="margin: 2px;"> <img alt="Chat" src="https://img.shields.io/badge/🤖%20Chat-DeepSeek%20V2-536af5?color=536af5&logoColor=white" style="display: inline-block; vertical-align: middle;"/> </a> <a href="https://huggingface.co/deepseek-ai" target="_blank" style="margin: 2px;"> <img alt="Hugging Face" src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-DeepSeek%20AI-ffc107?color=ffc107&logoColor=white" style="display: inline-block; vertical-align: middle;"/> </a> </div>
Apps Using This
Get started with code samples in your preferred language
Basic example of chat with the selected model
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-ai/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": 256,
14 "top_p": 0.1,
15 "frequency_penalty": 0,
16 "presence_penalty": 0
17 }'
Basic example of completions with the selected model
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-ai/DeepSeek-V2.5-1210",
7 "stream": true,
8 "prompt": "The x y problem is",
9 "temperature": 0.7,
10 "max_tokens": 256,
11 "top_p": 0.1,
12 "frequency_penalty": 0,
13 "presence_penalty": 0
14 }'