Deepseek with Theia AI #14780
Unanswered
TheMatthew
asked this question in
General
Replies: 1 comment
-
I plan to test this, unfortunately, their API service offering is currently down (maybe due to too many new customers) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all, I am trying out deepseek for fun, the thing is, I don't have any credits yet, I was wondering if anyone tested it out?
Here is my settings.json, if it works for others, great. I will confirm if it works for me when I get myself some credits.
{
"ai-features.AiEnable.enableAI": true,
"ai-features.openAiCustom.customOpenAiModels": [
{
"apikey": "nice-try",
"model": "deepseek-chat",
"url": "https://api.deepseek.com/v1"
}
],
"ai-features.agentSettings": {
"Code Completion": {
"languageModelRequirements": [
{
"purpose": "code-completion",
"identifier": "deepseek-chat"
}
]
},
"Workspace": {
"languageModelRequirements": [
{
"purpose": "chat",
"identifier": "deepseek-chat"
}
]
},
"Orchestrator": {
"languageModelRequirements": [
{
"purpose": "agent-selection",
"identifier": "deepseek-chat"
}
]
},
"Universal": {
"languageModelRequirements": [
{
"purpose": "chat",
"identifier": "deepseek-chat"
}
]
}
}
Beta Was this translation helpful? Give feedback.
All reactions