Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/types/src/provider-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const dynamicProviders = [
"inception",
"synthetic",
"sap-ai-core",
"openai", // OpenAI Compatible - fetches models dynamically from custom baseUrl
// kilocode_change end
"deepinfra",
"io-intelligence",
Expand Down Expand Up @@ -101,9 +102,11 @@ export const isInternalProvider = (key: string): key is InternalProvider =>
* CustomProvider
*
* Custom providers are completely configurable within Roo Code settings.
* Note: "openai" was moved to dynamicProviders as it fetches models dynamically.
*/

export const customProviders = ["openai"] as const
// kilocode_change start
export const customProviders = [] as const
// kilocode_change end

export type CustomProvider = (typeof customProviders)[number]

Expand Down Expand Up @@ -706,6 +709,7 @@ export const modelIdKeysByProvider: Record<TypicalProvider, ModelIdKey> = {
kilocode: "kilocodeModel",
bedrock: "apiModelId",
vertex: "apiModelId",
openai: "openAiModelId", // kilocode_change - OpenAI Compatible provider
"openai-native": "openAiModelId",
ollama: "ollamaModelId",
lmstudio: "lmStudioModelId",
Expand Down
Loading