Merge pull request #223 from corrm/feat/model-auto-detect

feat: auto-detect models from custom providers
This commit is contained in:
gsxdsm
2026-05-14 21:35:46 -07:00
committed by GitHub
9 changed files with 1028 additions and 14 deletions

View File

@@ -396,7 +396,7 @@ export interface NotificationProviderConfig {
export interface CustomProvider {
id: string;
name: string;
apiType: "openai-compatible" | "anthropic-compatible";
apiType: "openai-compatible" | "anthropic-compatible" | "google-generative-ai";
baseUrl: string;
apiKey?: string;
models?: { id: string; name: string }[];