feat: add LLM provider settings page

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-17 14:45:44 +05:30
co-authored by Claude Opus 4.6
parent 8fc5587876
commit edfc91468b
3 changed files with 123 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { object, string, pipe, minLength, optional } from 'valibot';
export const llmConfigSchema = object({
provider: pipe(string(), minLength(1)),
apiKey: pipe(string(), minLength(1)),
model: optional(string())
});