Skip to main content
Glama

Create an RVC training upload

create_training_job

Creates a private NiceVois job and returns a one-time PUT upload URL. Do not ask for consent before the first attempt because NiceVois remembers the current standing account agreement. If the server returns CONSENT_REQUIRED, ask for one acceptance of the linked standing agreement and retry once with acceptsStandingAgreement=true. This allocates a private training slot but does not start GPU work until the audio is uploaded and start_training is called.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
epochsYes
fileNameYesOriginal WAV, MP3, FLAC, M4A, or OGG filename.
modelNameYes
sizeBytesYes
contentTypeYes
submissionIdYes
durationSecondsYes
acceptsStandingAgreementNoSet only when the user explicitly accepts the linked standing voice-training agreement after CONSENT_REQUIRED. Omit for accounts that have already accepted.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
linksYes
epochsNo
statusYes
uploadYes
etaTextNo
messageNo
artifactsYes
createdAtNo
expiresAtNo
modelNameNo
startedAtNo
updatedAtNo
completedAtNo
currentEpochNo
durationSecondsNo
estimatedCompletionAtNo
estimatedRemainingSecondsNo

TDQS

A4.8/5.0
Behavior5/5

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

The description clearly discloses that the tool allocates a slot but does not start GPU work until start_training is called, and explains the consent handling behavior. This goes beyond the annotations (readOnlyHint=false, destructiveHint=false) to explain the asynchronous nature and side effects, which is valuable.

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 concise, using three sentences to cover purpose, usage, and behavior. It is front-loaded with the primary action and returns, then adds important caveats. No redundant information.

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 complexity (8 parameters, output schema exists), the description adequately covers the essential behavioral aspects like consent and the non-blocking nature. However, with low schema coverage, more detail on parameters like epochs, fileName, and contentType could improve completeness, but the output schema may clarify return values.

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

Parameters4/5

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

Schema coverage is only 25%, with most parameters lacking descriptions. However, the description explains the purpose of acceptsStandingAgreement and how it relates to consent, which is critical for correct usage. It also implies the other parameters (fileName, sizeBytes, etc.) are standard metadata, but could benefit from more detail.

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 tool creates a private NiceVois job and returns a one-time PUT upload URL, distinguishing it from siblings like start_training and list_training_jobs. It specifies the resource (training job) and the action (create), with clear scope (private).

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 provides explicit guidance on when to use this tool (to create a job before uploading audio) and when not to ask for consent (if standing agreement exists). It also gives a specific flow for handling CONSENT_REQUIRED responses, which is essential for correct usage.

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