Spaces:
Running
Running
Create tool_config.json
Browse files- tool_config.json +12 -0
tool_config.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"description": "\n A smolagent tool for transcribing audio and video files into text. This tool utilizes Whisper for transcription \n and ffmpeg for media conversion, enabling agents to process multimedia inputs into text. The tool supports robust \n file handling, including format conversion to WAV and dynamic device selection for optimal performance. It empowers \n agents to integrate audio and video transcription capabilities into workflows for enhanced data accessibility.",
|
3 |
+
"inputs": {
|
4 |
+
"file_path": {
|
5 |
+
"description": "Path to the audio or video file for transcription.",
|
6 |
+
"type": "string"
|
7 |
+
}
|
8 |
+
},
|
9 |
+
"name": "transcription_tool",
|
10 |
+
"output_type": "string",
|
11 |
+
"tool_class": "TranscriptionTool"
|
12 |
+
}
|