Deepseek support? #334
-
Deepseek documentation says: Can u add support? It seems it only requires to change a link. |
Beta Was this translation helpful? Give feedback.
Answered by
StephenHodgson
Jan 28, 2025
Replies: 1 comment 1 reply
-
This library was intended to only support the official API sorry. That being said you can replace your API with the deepseek api key and use their domain as your domin when setting up the OpenAIClient. var auth = new OpenAIAuthentication("<DeepSeek API Key>");
var settings = new OpenAISettings(domain: "https://api.deepseek.com");
var api = new OpenAIClient(auth, settings); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
StephenHodgson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This library was intended to only support the official API sorry.
That being said you can replace your API with the deepseek api key and use their domain as your domin when setting up the OpenAIClient.
just like in their examples: