File tree Expand file tree Collapse file tree 5 files changed +11
-7
lines changed
Expand file tree Collapse file tree 5 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.5.65
2+ current_version = 0.5.66
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change @@ -51,6 +51,6 @@ ENV PATH="/usr/local/bin:${PATH}"
5151RUN apt update \
5252 && apt install -y libasound-dev gcc portaudio19-dev \
5353 && pip install uv \
54- && uv pip install --system audio-transcriber[all]>=0.5.65
54+ && uv pip install --system audio-transcriber[all]>=0.5.66
5555
5656CMD ["audio-transcriber-mcp" ]
Original file line number Diff line number Diff line change 2121![ PyPI - Wheel] ( https://img.shields.io/pypi/wheel/audio-transcriber )
2222![ PyPI - Implementation] ( https://img.shields.io/pypi/implementation/audio-transcriber )
2323
24- * Version: 0.5.65 *
24+ * Version: 0.5.66 *
2525
2626## Overview
2727
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ def create_agent_server(
195195 a2a_app = agent .to_a2a (
196196 name = AGENT_NAME ,
197197 description = AGENT_DESCRIPTION ,
198- version = "0.5.65 " ,
198+ version = "0.5.66 " ,
199199 skills = skills ,
200200 debug = debug ,
201201 )
@@ -218,6 +218,10 @@ async def lifespan(app: FastAPI):
218218 lifespan = lifespan ,
219219 )
220220
221+ @app .get ("/health" )
222+ async def health_check ():
223+ return {"status" : "OK" }
224+
221225 # Mount A2A as sub-app at /a2a
222226 app .mount ("/a2a" , a2a_app )
223227
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " audio-transcriber"
7- version = " 0.5.65 "
7+ version = " 0.5.66 "
88description = " Transcribe your .wav .mp4 .mp3 .flac files to text or record your own audio!"
99readme = " README.md"
1010authors = [{ name = " Audel Rouhi" , email = " knucklessg1@gmail.com" }]
@@ -18,7 +18,7 @@ classifiers = [
1818]
1919requires-python = " >=3.10"
2020dependencies = [
21- " fastmcp>=2.13.0.2 " ,
21+ " fastmcp>=3.0.0b1 " ,
2222 " torch>=2.8.0" ,
2323 " transformers>=4.56.1" ,
2424 " pyaudio>=0.2.14" ,
@@ -28,7 +28,7 @@ dependencies = [
2828
2929[project .optional-dependencies ]
3030mcp = [
31- " fastmcp>=2.13.0.2 " ,
31+ " fastmcp>=3.0.0b1 " ,
3232 " eunomia-mcp>=0.3.10" ,
3333 " fastapi>=0.128.0"
3434]
You can’t perform that action at this time.
0 commit comments