feat: load models through provider adapters

Provider model selection had outgrown a single hardcoded service.

The old service mixed shared caching with provider catalogs and CLI lookup details.

That made stale model lists more likely as providers changed on separate schedules.

Move model discovery behind each provider so lookup lives next to the integration.

The shared service now focuses on provider resolution, caching, persistence, and dedupe.

Return cache metadata and add bypassCache because model availability changes outside the app.

The UI and /models command can show freshness and let users force a provider refresh.

Surface model descriptions while keeping fallback catalogs for unavailable CLIs or SDKs.
This commit is contained in:
Haileyesus
2026-05-18 12:40:24 +03:00
parent ffaef395e4
commit 556cbd1a03
28 changed files with 1125 additions and 483 deletions

View File

@@ -73,6 +73,7 @@ export type LLMProvider = 'claude' | 'codex' | 'gemini' | 'cursor' | 'opencode';
export type ProviderModelOption = {
value: string;
label: string;
description?: string;
};
/**
@@ -83,6 +84,31 @@ export type ProviderModelsDefinition = {
DEFAULT: string;
};
/**
* Cache metadata returned alongside one provider model catalog.
*
* `updatedAt` is when the current cached snapshot was last refreshed from the
* provider itself. `expiresAt` is the backend cache expiry timestamp, and
* `source` tells callers whether the current response came from in-memory cache,
* persisted disk cache, or a fresh provider fetch.
*/
export type ProviderModelsCacheInfo = {
updatedAt: string;
expiresAt: string;
source: 'memory' | 'disk' | 'fresh';
};
/**
* Full provider model lookup result returned by the backend service layer.
*
* Use this shape when a caller needs both the selectable model catalog and the
* cache metadata that explains how current the catalog is.
*/
export type ProviderModelsResult = {
models: ProviderModelsDefinition;
cache: ProviderModelsCacheInfo;
};
/**
* Message/event variants emitted by provider adapters and normalized transports.
*