get_balance
Check your Tuning Engines account balance and review recent transactions to monitor AI model fine-tuning costs and usage.
Instructions
Check your Tuning Engines account balance and recent transactions.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/client.ts:152-154 (handler)The actual API call implementation for billing, which provides the balance information.
async getBilling(): Promise<any> { return this.request("GET", "/api/v1/billing"); } - src/mcp.ts:464-466 (handler)The handler logic inside the MCP server loop that calls the client's getBilling method to fulfill the 'get_balance' request.
case "get_balance": result = await client.getBilling(); break;