From 7e5b3b9c7217195aabcb2110eaff776749d4f4af Mon Sep 17 00:00:00 2001 From: Michael Clifford Date: Wed, 10 Apr 2024 16:28:15 -0400 Subject: [PATCH] fix docs for #225 Signed-off-by: Michael Clifford --- recipes/audio/audio_to_text/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/audio/audio_to_text/README.md b/recipes/audio/audio_to_text/README.md index 82db353b4..8be423c02 100644 --- a/recipes/audio/audio_to_text/README.md +++ b/recipes/audio/audio_to_text/README.md @@ -78,12 +78,12 @@ podman build -t audio-to-text app ### Deploy the AI Application Make sure the Model Service is up and running before starting this container image. -When starting the AI Application container image we need to direct it to the correct `MODEL_SERVICE_ENDPOINT`. +When starting the AI Application container image we need to direct it to the correct `MODEL_ENDPOINT`. This could be any appropriately hosted Model Service (running locally or in the cloud) using a compatible API. The following Podman command can be used to run your AI Application: ```bash -podman run --rm -it -p 8501:8501 -e MODEL_SERVICE_ENDPOINT=http://0.0.0.0:8001/inference audio-to-text +podman run --rm -it -p 8501:8501 -e MODEL_ENDPOINT=http://0.0.0.0:8001/inference audio-to-text ``` ### Interact with the AI Application