diff --git a/backends/openai/routes.py b/backends/openai/routes.py index cbba19b..14ab48e 100644 --- a/backends/openai/routes.py +++ b/backends/openai/routes.py @@ -97,7 +97,7 @@ def read_chunks(file: BinaryIO, chunk_size: int) -> Iterator[leapfrogai.AudioReq yield leapfrogai.AudioRequest(chunk_data=chunk) -@router.post("/transcribe") +@router.post("/audio/transcriptions") async def transcribe( model_config: Annotated[Config, Depends(get_model_config)], req: CreateTranscriptionRequest = Depends() diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 7553961..b8bb9be 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.4.0 +version: 0.4.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/zarf.yaml b/zarf.yaml index 5a2672d..3bc84ff 100644 --- a/zarf.yaml +++ b/zarf.yaml @@ -4,12 +4,12 @@ kind: ZarfPackageConfig metadata: name: leapfrogai-api description: "LeapfrogAI" - version: 0.4.0 + version: 0.4.1 architecture: amd64 constants: - name: LEAPFROGAI_API_VERSION - value: "0.4.0" + value: "0.4.1" - name: KIWIGRID_VERSION value: "1.23.3" @@ -30,9 +30,9 @@ components: - name: leapfrogai namespace: leapfrogai localPath: chart - version: 0.4.0 + version: 0.4.1 valuesFiles: - "lfai-values.yaml" images: - - "ghcr.io/defenseunicorns/leapfrogai/leapfrogai-api:0.4.0" + - "ghcr.io/defenseunicorns/leapfrogai/leapfrogai-api:0.4.1" - "registry1.dso.mil/ironbank/kiwigrid/k8s-sidecar:1.23.3"