
DeepSeek - AI Programming AI工具使用教程与评测
FreeDeepSeek is an AI assistant developed by Hangzhou DeepSeek Artificial Intelligence, renowned for its exceptional reasoning and coding capabilities. Its flagship model DeepSeek-V3.2 and reasoning model DeepSeek-R1 are fully open-source (MIT license), achieving top-tier performance on math, code, and logic benchmarks while offering a free web interface, mobile app, and affordable API.
DeepSeek is a leading Chinese AI research company focused on developing world-class large language models with exceptional reasoning capabilities. Its flagship DeepSeek-V3.2 and reasoning-specialized DeepSeek-R1 achieve top-tier performance on global AI benchmarks, rivaling OpenAI o1, and are fully released under the MIT open-source license.
Users can access the free web interface at chat.deepseek.com, download the mobile app, or integrate via the Open Platform API. With ultra-low inference costs and state-of-the-art model performance, DeepSeek has become a top choice for developers, researchers, and everyday users worldwide.
from openai import OpenAI
client = OpenAI(api_key='your_key', base_url='https://api.deepseek.com')
response = client.chat.completions.create(
model='deepseek-chat', # or deepseek-reasoner
messages=[{'role': 'user', 'content': 'Hello'}]
)
print(response.choices[0].message.content)
| Model | Input (Cache Hit) | Input (Cache Miss) | Output |
|---|---|---|---|
| deepseek-chat (V3.2) | $0.028 | $0.28 | $0.42 |
| deepseek-reasoner (R1) | $0.14 | $0.55 | $2.19 |