Initial open-source release
This commit is contained in:
75
src/lib/schemas.ts
Normal file
75
src/lib/schemas.ts
Normal file
@@ -0,0 +1,75 @@
|
||||
import { z } from "zod";
|
||||
|
||||
/**
|
||||
* Zod schema for chat summary objects returned by the get-chats IPC
|
||||
*/
|
||||
export const ChatSummarySchema = z.object({
|
||||
id: z.number(),
|
||||
appId: z.number(),
|
||||
title: z.string().nullable(),
|
||||
createdAt: z.date(),
|
||||
});
|
||||
|
||||
/**
|
||||
* Type derived from the ChatSummarySchema
|
||||
*/
|
||||
export type ChatSummary = z.infer<typeof ChatSummarySchema>;
|
||||
|
||||
/**
|
||||
* Zod schema for an array of chat summaries
|
||||
*/
|
||||
export const ChatSummariesSchema = z.array(ChatSummarySchema);
|
||||
|
||||
/**
|
||||
* Zod schema for model provider
|
||||
*/
|
||||
export const ModelProviderSchema = z.enum([
|
||||
"openai",
|
||||
"anthropic",
|
||||
"google",
|
||||
"auto",
|
||||
"openrouter",
|
||||
]);
|
||||
|
||||
/**
|
||||
* Type derived from the ModelProviderSchema
|
||||
*/
|
||||
export type ModelProvider = z.infer<typeof ModelProviderSchema>;
|
||||
|
||||
/**
|
||||
* Zod schema for large language model configuration
|
||||
*/
|
||||
export const LargeLanguageModelSchema = z.object({
|
||||
name: z.string(),
|
||||
provider: ModelProviderSchema,
|
||||
});
|
||||
|
||||
/**
|
||||
* Type derived from the LargeLanguageModelSchema
|
||||
*/
|
||||
export type LargeLanguageModel = z.infer<typeof LargeLanguageModelSchema>;
|
||||
|
||||
/**
|
||||
* Zod schema for provider settings
|
||||
*/
|
||||
export const ProviderSettingSchema = z.object({
|
||||
apiKey: z.string().nullable(),
|
||||
});
|
||||
|
||||
/**
|
||||
* Type derived from the ProviderSettingSchema
|
||||
*/
|
||||
export type ProviderSetting = z.infer<typeof ProviderSettingSchema>;
|
||||
|
||||
/**
|
||||
* Zod schema for user settings
|
||||
*/
|
||||
export const UserSettingsSchema = z.object({
|
||||
selectedModel: LargeLanguageModelSchema,
|
||||
providerSettings: z.record(z.string(), ProviderSettingSchema),
|
||||
});
|
||||
|
||||
/**
|
||||
* Type derived from the UserSettingsSchema
|
||||
*/
|
||||
export type UserSettings = z.infer<typeof UserSettingsSchema>;
|
||||
Reference in New Issue
Block a user