🎯 feat(config): Custom Endpoint Request Headers (#1588)

This commit is contained in:
Danny Avila 2024-01-18 20:11:42 -05:00 committed by GitHub
parent ab3339210a
commit 7e2e19a134
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 25 additions and 1 deletions

View file

@ -23,6 +23,7 @@ export const endpointSchema = z.object({
summaryModel: z.string().optional(),
forcePrompt: z.boolean().optional(),
modelDisplayLabel: z.string().optional(),
headers: z.record(z.any()).optional(),
});
export const configSchema = z.object({