list_supported_models
Discover available HuggingFace models for fine-tuning on Tuning Engines to customize AI models for specific needs.
Instructions
List the supported base HuggingFace models available for fine-tuning on Tuning Engines.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/client.ts:146-148 (handler)The handler function that executes the request to list supported models.
async listModels(): Promise<any> { return this.request("GET", "/api/v1/models"); } - src/mcp.ts:296-303 (registration)The registration of the 'list_supported_models' tool within the MCP setup.
}, }, { name: "list_supported_models", description: "List the supported base HuggingFace models available for fine-tuning on Tuning Engines.", inputSchema: { type: "object" as const, - src/mcp.ts:472-474 (handler)The switch case handler that invokes client.listModels() when 'list_supported_models' is called.
case "list_supported_models": result = await client.listModels(); break;