393e6f5e68
## Summary Adds the newly released Claude models from the [models overview](https://platform.claude.com/docs/en/about-claude/models/overview) to the `claude_local` adapter's model selector: - **Claude Fable 5** (`claude-fable-5`) — generally available as of 2026-06-09, Anthropic's most capable widely-released model. - **Claude Mythos 5** (`claude-mythos-5`) — limited availability (Project Glasswing). **Opus 4.8 stays first in the list so it remains the default selection** — per the request, the new flagship models are *offered* but not defaulted (not Fable, not Mythos). ## Changes - `packages/adapters/claude-local/src/index.ts` — add `claude-fable-5` and `claude-mythos-5` to the adapter model list, right after `claude-opus-4-8`. - `packages/adapters/claude-local/src/server/models.ts` — add the Fable 5 Bedrock identifier (`us.anthropic.claude-fable-5-v1`) to the Bedrock fallback list. Mythos 5 is limited-availability on Bedrock, so it's intentionally left out of that fallback. - `server/src/__tests__/adapter-models.test.ts` — assert the new models are present and that `claude-opus-4-8` remains first (the default). These flow through the single `claudeModels` source, so they also appear in the ACPX combined list (`registry.ts` prefixes them with `Claude:`) and are recognized by the ACPX Claude model filter. The UI selector reads models dynamically from the adapter, so no UI changes are needed. ## Testing - `npx vitest run src/__tests__/adapter-models.test.ts` — 13 passed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
165 lines
5.5 KiB
TypeScript
165 lines
5.5 KiB
TypeScript
import { createHash } from "node:crypto";
|
|
import type { AdapterModel } from "@paperclipai/adapter-utils";
|
|
import { models as DIRECT_MODELS } from "../index.js";
|
|
|
|
const ANTHROPIC_MODELS_ENDPOINT = "/v1/models";
|
|
const ANTHROPIC_MODELS_TIMEOUT_MS = 5000;
|
|
const ANTHROPIC_MODELS_CACHE_TTL_MS = 60_000;
|
|
const ANTHROPIC_API_VERSION = "2023-06-01";
|
|
|
|
/** AWS Bedrock model IDs — region-qualified identifiers required by the Bedrock API. */
|
|
const BEDROCK_MODELS: AdapterModel[] = [
|
|
{ id: "us.anthropic.claude-opus-4-8-v1", label: "Bedrock Opus 4.8" },
|
|
{ id: "us.anthropic.claude-fable-5-v1", label: "Bedrock Fable 5" },
|
|
{ id: "us.anthropic.claude-opus-4-6-v1", label: "Bedrock Opus 4.6" },
|
|
{ id: "us.anthropic.claude-sonnet-4-5-20250929-v2:0", label: "Bedrock Sonnet 4.5" },
|
|
{ id: "us.anthropic.claude-haiku-4-5-20251001-v1:0", label: "Bedrock Haiku 4.5" },
|
|
];
|
|
|
|
let cached: { keyFingerprint: string; baseUrl: string; expiresAt: number; models: AdapterModel[] } | null = null;
|
|
|
|
function isBedrockEnv(): boolean {
|
|
return (
|
|
process.env.CLAUDE_CODE_USE_BEDROCK === "1" ||
|
|
process.env.CLAUDE_CODE_USE_BEDROCK === "true" ||
|
|
(typeof process.env.ANTHROPIC_BEDROCK_BASE_URL === "string" &&
|
|
process.env.ANTHROPIC_BEDROCK_BASE_URL.trim().length > 0)
|
|
);
|
|
}
|
|
|
|
function fingerprint(apiKey: string): string {
|
|
const digest = createHash("sha256").update(apiKey).digest("base64url").slice(0, 16);
|
|
return `${apiKey.length}:${digest}`;
|
|
}
|
|
|
|
function dedupeModels(models: AdapterModel[]): AdapterModel[] {
|
|
const seen = new Set<string>();
|
|
const deduped: AdapterModel[] = [];
|
|
for (const model of models) {
|
|
const id = model.id.trim();
|
|
if (!id || seen.has(id)) continue;
|
|
seen.add(id);
|
|
deduped.push({ id, label: model.label.trim() || id });
|
|
}
|
|
return deduped;
|
|
}
|
|
|
|
function mergedWithFallback(models: AdapterModel[]): AdapterModel[] {
|
|
return dedupeModels([
|
|
...models,
|
|
...DIRECT_MODELS,
|
|
]);
|
|
}
|
|
|
|
function resolveAnthropicApiKey(): string | null {
|
|
const apiKey = process.env.ANTHROPIC_API_KEY?.trim();
|
|
return apiKey && apiKey.length > 0 ? apiKey : null;
|
|
}
|
|
|
|
function resolveAnthropicBaseUrl(): string {
|
|
const baseUrl = process.env.ANTHROPIC_BASE_URL?.trim();
|
|
return baseUrl && baseUrl.length > 0 ? baseUrl.replace(/\/+$/, "") : "https://api.anthropic.com";
|
|
}
|
|
|
|
async function fetchAnthropicModels(apiKey: string, baseUrl: string): Promise<AdapterModel[]> {
|
|
const controller = new AbortController();
|
|
const timeout = setTimeout(() => controller.abort(), ANTHROPIC_MODELS_TIMEOUT_MS);
|
|
try {
|
|
const response = await fetch(`${baseUrl}${ANTHROPIC_MODELS_ENDPOINT}`, {
|
|
headers: {
|
|
"anthropic-version": ANTHROPIC_API_VERSION,
|
|
"x-api-key": apiKey,
|
|
},
|
|
signal: controller.signal,
|
|
});
|
|
if (!response.ok) return [];
|
|
|
|
const payload = (await response.json()) as { data?: unknown };
|
|
const data = Array.isArray(payload.data) ? payload.data : [];
|
|
const models: AdapterModel[] = [];
|
|
for (const item of data) {
|
|
if (typeof item !== "object" || item === null) continue;
|
|
const record = item as { id?: unknown; display_name?: unknown };
|
|
if (typeof record.id !== "string" || record.id.trim().length === 0) continue;
|
|
const displayName =
|
|
typeof record.display_name === "string" && record.display_name.trim().length > 0
|
|
? record.display_name
|
|
: record.id;
|
|
models.push({
|
|
id: record.id,
|
|
label: displayName,
|
|
});
|
|
}
|
|
return dedupeModels(models);
|
|
} catch (error) {
|
|
console.warn("[paperclip] Claude model discovery failed", {
|
|
error: error instanceof Error ? error.message : String(error),
|
|
});
|
|
return [];
|
|
} finally {
|
|
clearTimeout(timeout);
|
|
}
|
|
}
|
|
|
|
async function loadClaudeModels(options?: { forceRefresh?: boolean }): Promise<AdapterModel[]> {
|
|
if (isBedrockEnv()) return dedupeModels(BEDROCK_MODELS);
|
|
|
|
const fallback = dedupeModels(DIRECT_MODELS);
|
|
const apiKey = resolveAnthropicApiKey();
|
|
if (!apiKey) return fallback;
|
|
|
|
const now = Date.now();
|
|
const baseUrl = resolveAnthropicBaseUrl();
|
|
const keyFingerprint = fingerprint(apiKey);
|
|
if (
|
|
options?.forceRefresh !== true &&
|
|
cached &&
|
|
cached.keyFingerprint === keyFingerprint &&
|
|
cached.baseUrl === baseUrl &&
|
|
cached.expiresAt > now
|
|
) {
|
|
return cached.models;
|
|
}
|
|
|
|
const fetched = await fetchAnthropicModels(apiKey, baseUrl);
|
|
if (fetched.length > 0) {
|
|
const merged = mergedWithFallback(fetched);
|
|
cached = {
|
|
keyFingerprint,
|
|
baseUrl,
|
|
expiresAt: now + ANTHROPIC_MODELS_CACHE_TTL_MS,
|
|
models: merged,
|
|
};
|
|
return merged;
|
|
}
|
|
|
|
if (cached && cached.keyFingerprint === keyFingerprint && cached.baseUrl === baseUrl && cached.models.length > 0) {
|
|
return cached.models;
|
|
}
|
|
|
|
return fallback;
|
|
}
|
|
|
|
/**
|
|
* Return the model list appropriate for the current auth mode.
|
|
* When Bedrock env vars are detected, returns Bedrock-native model IDs;
|
|
* otherwise returns standard Anthropic API model IDs.
|
|
*/
|
|
export async function listClaudeModels(): Promise<AdapterModel[]> {
|
|
return loadClaudeModels();
|
|
}
|
|
|
|
export async function refreshClaudeModels(): Promise<AdapterModel[]> {
|
|
return loadClaudeModels({ forceRefresh: true });
|
|
}
|
|
|
|
export function resetClaudeModelsCacheForTests() {
|
|
cached = null;
|
|
}
|
|
|
|
/** Check whether a model ID is a Bedrock-native identifier (not an Anthropic API short name). */
|
|
/** Bedrock model IDs use region-qualified prefixes (e.g. us.anthropic.*, eu.anthropic.*) or ARNs. */
|
|
export function isBedrockModelId(model: string): boolean {
|
|
return /^\w+\.anthropic\./.test(model) || model.startsWith("arn:aws:bedrock:");
|
|
}
|