mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat: fallback to openai compatible provider if url host doesn't match
This commit is contained in:
@@ -17,7 +17,7 @@ function getProviderName(apiUrl: string) {
|
|||||||
if (apiUrl.includes("localhost:11434") || apiUrl.includes("ollama"))
|
if (apiUrl.includes("localhost:11434") || apiUrl.includes("ollama"))
|
||||||
return "ollama";
|
return "ollama";
|
||||||
if (apiUrl.includes("api.deepinfra.com")) return "deepinfra";
|
if (apiUrl.includes("api.deepinfra.com")) return "deepinfra";
|
||||||
throw new Error(`Unsupported AI provider for URL: ${apiUrl}`);
|
return "custom";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function selectAIProvider(config: { apiUrl: string; apiKey: string }) {
|
export function selectAIProvider(config: { apiUrl: string; apiKey: string }) {
|
||||||
@@ -68,6 +68,12 @@ export function selectAIProvider(config: { apiUrl: string; apiKey: string }) {
|
|||||||
apiKey: config.apiKey,
|
apiKey: config.apiKey,
|
||||||
});
|
});
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unsupported AI provider: ${providerName}`);
|
return createOpenAICompatible({
|
||||||
|
name: "custom",
|
||||||
|
baseURL: config.apiUrl,
|
||||||
|
headers: {
|
||||||
|
Authorization: `Bearer ${config.apiKey}`,
|
||||||
|
},
|
||||||
|
)};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user