audio_recognition
Analyze and transcribe audio files using Google Gemini AI. Provide a filepath and optional prompts or models for accurate content recognition and transcription.
Instructions
Analyze and transcribe audio using Google Gemini AI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | Path to the media file to analyze | |
modelname | No | Gemini model to use for recognition | gemini-2.0-flash |
prompt | No | Custom prompt for the recognition | Describe this content |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filepath": {
"description": "Path to the media file to analyze",
"type": "string"
},
"modelname": {
"default": "gemini-2.0-flash",
"description": "Gemini model to use for recognition",
"type": "string"
},
"prompt": {
"default": "Describe this content",
"description": "Custom prompt for the recognition",
"type": "string"
}
},
"required": [
"filepath"
],
"type": "object"
}