#923·go-openai

Plans to support DeepSeek?

Author: bamziCreated Jan 21, 2025Updated Jun 23, 2026
Labelsenhancement

Reviewing the documentation of DeepSeek, the example codes use python OpenAi library which indicates API parity with OpenAI.

Is there a plan to support DeepSeek models and endpoint?

Example: DeepSeek Structured output

python
from openai import OpenAI

client = OpenAI(
    api_key="<your api key>",
    base_url="https://api.deepseek.com", # <--- deepseek api endpoint
)