feat: add LLM provider settings page
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
8fc5587876
commit
edfc91468b
@@ -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())
|
||||
});
|
||||
Reference in New Issue
Block a user