From da751c06caaca96b9c379ecdcdcfa2474a196823 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 22 Sep 2023 01:25:55 -0700 Subject: [PATCH] Anthropic: reduce access --- src/modules/llms/anthropic/anthropic.router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/llms/anthropic/anthropic.router.ts b/src/modules/llms/anthropic/anthropic.router.ts index 9dae734c4..fed8d3e20 100644 --- a/src/modules/llms/anthropic/anthropic.router.ts +++ b/src/modules/llms/anthropic/anthropic.router.ts @@ -17,7 +17,7 @@ const anthropicAccessSchema = z.object({ anthropicHost: z.string().trim(), }); -export const chatGenerateSchema = z.object({ access: anthropicAccessSchema, model: modelSchema, history: historySchema }); +const chatGenerateSchema = z.object({ access: anthropicAccessSchema, model: modelSchema, history: historySchema }); const listModelsSchema = z.object({ access: anthropicAccessSchema });