thanhnew2001test/nghitts2
Public
13
runs
Run thanhnew2001test/nghitts2 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| model |
None
|
ngochuyen
|
Voice model to use
|
| text |
string
|
Text to synthesize (Vietnamese)
|
|
| enable_preprocessing |
boolean
|
True
|
Enable text preprocessing (normalization, number conversion, etc.). Set to false for faster processing if text is already normalized.
|
{
"type": "object",
"title": "Input",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"title": "Text",
"description": "Text to synthesize (Vietnamese)"
},
"model": {
"enum": [
"ngochuyen",
"tranthanh"
],
"type": "string",
"title": "model",
"description": "Voice model to use",
"default": "ngochuyen",
"x-order": 1
},
"enable_preprocessing": {
"type": "boolean",
"title": "Enable Preprocessing",
"default": true,
"description": "Enable text preprocessing (normalization, number conversion, etc.). Set to false for faster processing if text is already normalized."
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}