83 lines
2.5 KiB
TypeScript
83 lines
2.5 KiB
TypeScript
import { type ClawdbotConfig, loadConfig } from "../config/config.js";
|
|
import { resolveClawdbotAgentDir } from "./agent-paths.js";
|
|
import { ensureClawdbotModelsJson } from "./models-config.js";
|
|
|
|
export type ModelCatalogEntry = {
|
|
id: string;
|
|
name: string;
|
|
provider: string;
|
|
contextWindow?: number;
|
|
reasoning?: boolean;
|
|
};
|
|
|
|
type DiscoveredModel = {
|
|
id: string;
|
|
name?: string;
|
|
provider: string;
|
|
contextWindow?: number;
|
|
reasoning?: boolean;
|
|
};
|
|
|
|
let modelCatalogPromise: Promise<ModelCatalogEntry[]> | null = null;
|
|
|
|
export function resetModelCatalogCacheForTest() {
|
|
modelCatalogPromise = null;
|
|
}
|
|
|
|
export async function loadModelCatalog(params?: {
|
|
config?: ClawdbotConfig;
|
|
useCache?: boolean;
|
|
}): Promise<ModelCatalogEntry[]> {
|
|
if (params?.useCache === false) {
|
|
modelCatalogPromise = null;
|
|
}
|
|
if (modelCatalogPromise) return modelCatalogPromise;
|
|
|
|
modelCatalogPromise = (async () => {
|
|
const piSdk = await import("@mariozechner/pi-coding-agent");
|
|
|
|
const models: ModelCatalogEntry[] = [];
|
|
try {
|
|
const cfg = params?.config ?? loadConfig();
|
|
await ensureClawdbotModelsJson(cfg);
|
|
const agentDir = resolveClawdbotAgentDir();
|
|
const authStorage = piSdk.discoverAuthStorage(agentDir);
|
|
const registry = piSdk.discoverModels(authStorage, agentDir) as
|
|
| {
|
|
getAll: () => Array<DiscoveredModel>;
|
|
}
|
|
| Array<DiscoveredModel>;
|
|
const entries = Array.isArray(registry) ? registry : registry.getAll();
|
|
for (const entry of entries) {
|
|
const id = String(entry?.id ?? "").trim();
|
|
if (!id) continue;
|
|
const provider = String(entry?.provider ?? "").trim();
|
|
if (!provider) continue;
|
|
const name = String(entry?.name ?? id).trim() || id;
|
|
const contextWindow =
|
|
typeof entry?.contextWindow === "number" && entry.contextWindow > 0
|
|
? entry.contextWindow
|
|
: undefined;
|
|
const reasoning = typeof entry?.reasoning === "boolean" ? entry.reasoning : undefined;
|
|
models.push({ id, name, provider, contextWindow, reasoning });
|
|
}
|
|
|
|
if (models.length === 0) {
|
|
// If we found nothing, don't cache this result so we can try again.
|
|
modelCatalogPromise = null;
|
|
}
|
|
} catch {
|
|
// Leave models empty on discovery errors and don't cache.
|
|
modelCatalogPromise = null;
|
|
}
|
|
|
|
return models.sort((a, b) => {
|
|
const p = a.provider.localeCompare(b.provider);
|
|
if (p !== 0) return p;
|
|
return a.name.localeCompare(b.name);
|
|
});
|
|
})();
|
|
|
|
return modelCatalogPromise;
|
|
}
|