We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1c0c1d + 46359f4 commit 7b842adCopy full SHA for 7b842ad
src/api/providers/kilocode/model-settings.ts
@@ -1,9 +1,9 @@
1
-import { ModelInfo, toolNames } from "@roo-code/types"
+import { ModelInfo } from "@roo-code/types"
2
import { z } from "zod"
3
4
export const ModelSettingsSchema = z.object({
5
- included_tools: z.array(z.enum(toolNames)).nullish(),
6
- excluded_tools: z.array(z.enum(toolNames)).nullish(),
+ included_tools: z.array(z.string()).nullish(),
+ excluded_tools: z.array(z.string()).nullish(),
7
})
8
9
export const VersionedModelSettingsSchema = z.record(z.string(), ModelSettingsSchema)
0 commit comments