Skip to main content
Glama

Start image LoRA training

start_image_training

Use this only after every image was successfully PUT to its upload URL from create_image_training_job. Starts the isolated cloud GPU training run.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
nameNo
errorNo
linksNo
stepsNo
statusYes
messageNo
uploadsNo
createdAtNo
startedAtNo
imageCountNo
completedAtNo
downloadUrlNo
subjectTypeNo
triggerWordNo
billingSourceNo
progressStageNo
uploadedCountNo
priceQuoteCentsNo
progressPercentNo
estimatedCompletionAtNo
estimatedTotalSecondsNo
estimatedRemainingSecondsNo

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint=false (mutation) and openWorldHint=true (external effects). The description adds that it starts a training run on an isolated cloud GPU, which conveys resource usage. However, it does not describe any side effects (e.g., billing, cancellation, or what happens on failure). Given that annotations already cover the safety profile, the description provides enough but not rich behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The critical precondition is front-loaded, and the action is stated clearly. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has only one parameter and an output schema exists, the description covers the essential precondition and the action. It tells the agent exactly when to invoke it and what it does. It could explicitly state that jobId is the identifier from create_image_training_job, but the reference is implicit. Overall, the description is complete enough for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides only a jobId string with no description, and schema coverage is 0%. The description indirectly implies jobId comes from create_image_training_job ('from create_image_training_job' refers to the upload URLs, but the job ID is part of that context). However, it does not explicitly state that jobId is the ID returned by create_image_training_job, so the description adds some meaning but does not fully compensate for the missing parameter documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Starts') and the resource ('isolated cloud GPU training run'), and the tool name specifies 'image training' to differentiate from generic start_training. The precondition referencing create_image_training_job further clarifies that this is the second step in an image-training workflow, so an agent can distinguish it from other start tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool: 'Use this only after every image was successfully PUT to its upload URL from create_image_training_job.' This gives a clear precondition and names the prerequisite tool. It implicitly tells the agent not to use it before that step, which is strong usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct resource-action pair (training vs image training vs conversion vs requirements/quote/start/download). The consistent 'training' vs 'image_training' qualifiers prevent overlap between the two domains.

Naming Consistency5/5

All tools follow a clear verb_noun snake_case pattern (create_, get_, list_, quote_, start_, download_). The parallel naming for voice training and image training (e.g., create_training_job vs create_image_training_job) is predictable and consistent.

Tool Count4/5

18 tools is slightly above the typical 3-15 range, but each tool serves a necessary step in the training/conversion workflows (requirements, quote, create, start, poll, download). The count is justified by the server covering both voice and image training plus conversion.

Completeness4/5

The full lifecycle for training and conversion is covered: requirements gathering, quoting, job creation, upload, start, status checks, and output download. Minor gaps exist, such as no cancel/delete job operations and no dedicated list for image training jobs, but these are workable.

Resources