kobold_transcribe
Convert audio files into text transcriptions using Whisper AI technology. Ideal for processing speech-to-text tasks with customizable language options and API integration.
Instructions
Transcribe audio using Whisper
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiUrl | No | http://localhost:5001 | |
audio | Yes | ||
language | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiUrl": {
"default": "http://localhost:5001",
"type": "string"
},
"audio": {
"type": "string"
},
"language": {
"type": "string"
}
},
"required": [
"audio"
],
"type": "object"
}