Skip to content

dependabit / manifest/src / LLMConfigSchema

Variable: LLMConfigSchema

ts
const LLMConfigSchema: ZodObject<{
  maxTokens: ZodDefault<ZodNumber>;
  model: ZodOptional<ZodString>;
  provider: ZodDefault<ZodEnum<{
     azure-openai: "azure-openai";
     claude: "claude";
     github-copilot: "github-copilot";
     openai: "openai";
  }>>;
  temperature: ZodDefault<ZodNumber>;
}, $strip>;

Defined in: packages/manifest/src/schema.ts:171

Released under the MIT License.