/** * Curated MiniMax model catalog. * * The Paperclip UI shows these in the agent-config model dropdown. * The full list of IDs is also fetchable from the MiniMax API at * runtime via \`GET /v1/models\` — \`listModels()\` in * \`server-adapter.ts\` returns both this curated list and the live * one, with deduplication. */ import type { AdapterModel } from "@paperclipai/adapter-utils"; export const models: AdapterModel[] = [ { id: "MiniMax-M3", label: "MiniMax M3 (latest, default)" }, { id: "MiniMax-M3:free", label: "MiniMax M3 (free tier)" }, { id: "MiniMax-M2.7", label: "MiniMax M2.7" }, { id: "MiniMax-M2.5", label: "MiniMax M2.5" }, { id: "MiniMax-M2", label: "MiniMax M2 (earliest supported)" }, ];