Bismay commited on
Commit
c139e1b
·
1 Parent(s): 5c39419

Remove tool config

Browse files
Files changed (2) hide show
  1. README.md +0 -1
  2. tool_config.json +0 -12
README.md CHANGED
@@ -21,7 +21,6 @@ The repository contains the following main components:
21
  - **`app.py`**: The main Gradio application file that runs the MCP server.
22
  - **`transcription_tool.py`**: The core logic for handling file conversion and calling the transcription function.
23
  - **`transcription.py`**: Contains the implementation for Whisper transcription using the `transformers` library.
24
- - **`tool_config.json`**: Configuration details for the `gradio-transcript-mcp`.
25
  - **`requirements.txt`**: Lists the necessary Python dependencies.
26
  - **`ffmpeg_setup.py`**: Script to ensure ffmpeg is available.
27
  - **`logging_config.py`**: Configuration for logging.
 
21
  - **`app.py`**: The main Gradio application file that runs the MCP server.
22
  - **`transcription_tool.py`**: The core logic for handling file conversion and calling the transcription function.
23
  - **`transcription.py`**: Contains the implementation for Whisper transcription using the `transformers` library.
 
24
  - **`requirements.txt`**: Lists the necessary Python dependencies.
25
  - **`ffmpeg_setup.py`**: Script to ensure ffmpeg is available.
26
  - **`logging_config.py`**: Configuration for logging.
tool_config.json DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "description": "\n A smolagent tool for transcribing audio and video from URLs into text. This tool utilizes Whisper for transcription \n and ffmpeg (via yt-dlp) for media conversion, enabling agents to process multimedia inputs into text by downloading \n and converting content from a given URL. It supports robust handling, including format conversion to WAV and dynamic \n device selection for optimal performance. It empowers agents to integrate audio and video transcription capabilities \n 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
- }