Skip to content
This repository was archived by the owner on Jan 24, 2026. It is now read-only.

Commit 44f6bfc

Browse files
committed
fix: correct baseUrl of DeepSeek (I should have been not so trusting AI completions)
1 parent 89f0a02 commit 44f6bfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/kotlin/io/github/stream29/proxy/client/OpenAiBased.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ data class DeepSeekConfig(
2222
val apiKey: String,
2323
val modelList: List<String> = listOf("deepseek-chat", "deepseek-reasoner"),
2424
): ApiProvider by OpenAiConfig(
25-
baseUrl = "https://api.deepseek.ai/v1/",
25+
baseUrl = "https://api.deepseek.com/",
2626
apiKey = apiKey,
2727
modelList = modelList
2828
)

0 commit comments

Comments
 (0)