Skip to content

Instantly share code, notes, and snippets.

@eeskildsen
Created February 28, 2025 20:50
Show Gist options
  • Save eeskildsen/5971b64b8763c2a5c724dddadc86004b to your computer and use it in GitHub Desktop.
Save eeskildsen/5971b64b8763c2a5c724dddadc86004b to your computer and use it in GitHub Desktop.
Using DeepSeek with Microsoft Semantic Kernel (C#)
OpenAIClient openAiClient = new OpenAIClient(new System.ClientModel.ApiKeyCredential(config["DEEPSEEK_API_KEY"]!), new()
{
Endpoint = new("https://api.deepseek.com/v1"),
});
services.AddOpenAIChatCompletion(config["ModelName"]!, openAiClient);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment