list_models
View trained and imported AI models available for fine-tuning on Tuning Engines. Manage your model collection to select appropriate models for domain-specific tuning tasks.
Instructions
List your trained and imported models on Tuning Engines.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/client.ts:146-148 (handler)The implementation of the `listModels` method in the client library.
async listModels(): Promise<any> { return this.request("GET", "/api/v1/models"); } - src/mcp.ts:472-474 (handler)The MCP server tool handler case for `list_supported_models`, which calls `client.listModels()`. Note: The MCP tool name 'list_models' actually calls 'client.listUserModels()' in this codebase; the 'list_supported_models' tool calls 'client.listModels()'.
case "list_supported_models": result = await client.listModels(); break;