Skip to content

Commit 0b63eb4

Browse files
committed
Bump version: 0.5.65 → 0.5.66
1 parent 0771568 commit 0b63eb4

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.65
2+
current_version = 0.5.66
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ ENV PATH="/usr/local/bin:${PATH}"
5151
RUN 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

5656
CMD ["audio-transcriber-mcp"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
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

audio_transcriber/audio_transcriber_agent.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "audio-transcriber"
7-
version = "0.5.65"
7+
version = "0.5.66"
88
description = "Transcribe your .wav .mp4 .mp3 .flac files to text or record your own audio!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,7 +18,7 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
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]
3030
mcp = [
31-
"fastmcp>=2.13.0.2",
31+
"fastmcp>=3.0.0b1",
3232
"eunomia-mcp>=0.3.10",
3333
"fastapi>=0.128.0"
3434
]

0 commit comments

Comments
 (0)