Skip to content

Commit bf44f9f

Browse files
authored
Try to unpin llama stack (#2171)
1 parent 0c6726f commit bf44f9f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/llama_stack.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,13 @@ jobs:
7777
python-version: ${{ matrix.python-version }}
7878

7979
- name: Test Llama Stack Server
80+
env:
81+
OLLAMA_INFERENCE_MODEL: llama3.2:3b
82+
OLLAMA_URL: http://localhost:11434
8083
shell: bash
8184
run: |
8285
pip install uv
83-
INFERENCE_MODEL=llama3.2:3b uv run --with llama-stack llama stack build --template ollama --image-type venv --run < /dev/null > server.log 2>&1 &
86+
uv run --with llama-stack llama stack build --distro starter --image-type venv --run < /dev/null > server.log 2>&1 &
8487
sleep 120
8588
# Verify it's running
8689
curl -f http://localhost:8321/v1/models || { cat server.log; exit 1; }

integrations/llama_stack/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: Implementation :: CPython",
2121
"Programming Language :: Python :: Implementation :: PyPy",
2222
]
23-
dependencies = ["haystack-ai>=2.14", "llama-stack==0.2.14", "openai<=1.99.1"]
23+
dependencies = ["haystack-ai>=2.14", "llama-stack>=0.2.17", "openai<=1.99.1"]
2424

2525
[project.urls]
2626
Documentation = "https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/llama-stack#readme"

0 commit comments

Comments
 (0)