diff --git a/audio-to-text/ai-lab.yaml b/audio-to-text/ai-lab.yaml new file mode 100644 index 000000000..09a897f50 --- /dev/null +++ b/audio-to-text/ai-lab.yaml @@ -0,0 +1,27 @@ +version: v1.0 +application: + type: audio + name: Audio Transcription + description: This is a Streamlit transcription application. + containers: + - name: whispercpp-server + contextdir: ../model_servers/whispercpp + containerfile: Containerfile + model-service: true + backend: + - llama + arch: + - arm64 + - amd64 + ports: + - 8001 + image: quay.io/redhat-et/locallm-whispercpp-service:latest + - name: whispercpp-app + contextdir: . + containerfile: builds/Containerfile + arch: + - arm64 + - amd64 + ports: + - 8501 + image: quay.io/redhat-et/locallm-whisper-client:latest \ No newline at end of file diff --git a/audio-to-text/client/Containerfile b/audio-to-text/builds/Containerfile similarity index 100% rename from audio-to-text/client/Containerfile rename to audio-to-text/builds/Containerfile diff --git a/audio-to-text/client/requirements.txt b/audio-to-text/builds/requirements.txt similarity index 100% rename from audio-to-text/client/requirements.txt rename to audio-to-text/builds/requirements.txt diff --git a/audio-to-text/client/whisper_client.py b/audio-to-text/whisper_client.py similarity index 100% rename from audio-to-text/client/whisper_client.py rename to audio-to-text/whisper_client.py