DeepSeek V3.2는 일반 채팅, 초안 작성, 코드 완성을 위한 안정적이고 균형 잡힌 모델입니다. 낮은 가격대에서 강력한 명령 수행 능력과 광범위한 언어 지원을 제공하여 최신 추론 기능이 필요하지 않은 프로덕션 워크로드에 신뢰할 수 있는 기본 선택입니다.
OpenAI를 바로 대체할 수 있습니다. base_url과 model만 변경하세요.
# Python - pip install openai from openai import OpenAI client = OpenAI( base_url="https://meshtok.com/v1", api_key="sk-your-MeshTok-key", ) resp = client.chat.completions.create( model="deepseek/deepseek-v3.2", messages=[{"role":"user","content":"Hello!"}], ) print(resp.choices[0].message.content)
# cURL curl https://meshtok.com/v1/chat/completions \ -H "Authorization: Bearer sk-your-MeshTok-key" \ -H "Content-Type: application/json" \ -d '{"model":"deepseek/deepseek-v3.2","messages":[{"role":"user","content":"Hello!"}]}'
고려해볼 만한 다른 모델입니다.
DeepSeek’s flagship reasoning model.
Fast and ultra-cheap, for high-volume tasks.
Deep reasoning model for hard problems.
General-purpose chat model.