mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-25 21:57:45 +00:00
chore: install script should use starter
Our demo installation script should pull the starter image. Ollama is not being updated anymore as a distribution. Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
parent
cbe89d2bdd
commit
5e98abcb9a
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ set -Eeuo pipefail
|
|||
PORT=8321
|
||||
OLLAMA_PORT=11434
|
||||
MODEL_ALIAS="llama3.2:3b"
|
||||
SERVER_IMAGE="docker.io/llamastack/distribution-ollama:latest"
|
||||
SERVER_IMAGE="docker.io/llamastack/distribution-starter:latest"
|
||||
WAIT_TIMEOUT=30
|
||||
TEMP_LOG=""
|
||||
|
||||
|
@ -224,7 +224,7 @@ cmd=( run -d "${PLATFORM_OPTS[@]}" --name llama-stack \
|
|||
"${SERVER_IMAGE}" --port "${PORT}" \
|
||||
--env OLLAMA_INFERENCE_MODEL="${MODEL_ALIAS}" \
|
||||
--env OLLAMA_URL="http://ollama-server:${OLLAMA_PORT}" \
|
||||
--env ENABLE_OLLAMA=ollama --env OPENAI_API_KEY=foo)
|
||||
--env ENABLE_OLLAMA=ollama)
|
||||
|
||||
log "🦙 Starting Llama Stack..."
|
||||
if ! execute_with_log $ENGINE "${cmd[@]}"; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue