File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5656 always_run : true
5757 files : ^distribution/.*$
5858 additional_dependencies :
59- - llama-stack==0.2.22
59+ - llama-stack==0.2.23
6060
6161 - id : doc-gen
6262 name : Distribution Documentation
Original file line number Diff line number Diff line change @@ -6,46 +6,46 @@ WORKDIR /opt/app-root
66
77RUN pip install sqlalchemy # somehow sqlalchemy[asyncio] is not sufficient
88RUN pip install \
9- aiosqlite \
10- asyncpg \
11- autoevals \
12- boto3 \
13- chardet \
14- 'datasets>=4.0.0' \
9+ llama_stack_provider_lmeval==0.2.4
10+ RUN pip install \
11+ llama_stack_provider_trustyai_fms==0.2.2
12+ RUN pip install \
13+ nltk \
14+ sentencepiece \
15+ ibm_watsonx_ai \
16+ google-cloud-aiplatform \
17+ psycopg2-binary \
18+ numpy \
1519 fastapi \
20+ aiosqlite \
1621 fire \
17- google-cloud-aiplatform \
1822 httpx \
19- ibm_watsonx_ai \
20- litellm \
21- matplotlib \
23+ scikit-learn \
24+ 'pymilvus[milvus-lite]>=2.4.10' \
25+ boto3 \
26+ tqdm \
2227 'mcp>=1.8.1' \
23- nltk \
24- numpy \
25- opentelemetry-exporter-otlp-proto-http \
26- opentelemetry-sdk \
27- pandas \
2828 pillow \
29- psycopg2-binary \
30- 'pymilvus[milvus-lite]>=2.4.10' \
31- pymongo \
29+ pandas \
3230 pypdf \
31+ 'datasets>=4.0.0' \
32+ opentelemetry-sdk \
3333 redis \
34- requests \
35- scikit-learn \
36- scipy \
37- sentencepiece \
34+ uvicorn \
35+ pymongo \
3836 sqlalchemy[asyncio] \
39- tqdm \
37+ scipy \
38+ asyncpg \
39+ autoevals \
40+ chardet \
41+ opentelemetry-exporter-otlp-proto-http \
42+ litellm \
43+ requests \
4044 transformers \
41- uvicorn
42- RUN pip install \
43- llama_stack_provider_lmeval==0.2.4
44- RUN pip install \
45- llama_stack_provider_trustyai_fms==0.2.2
46- RUN pip install --extra-index-url https://download.pytorch.org/whl/cpu torch 'torchao>=0.12.0' torchvision
45+ matplotlib
46+ RUN pip install 'torchao>=0.12.0' torchvision torch --extra-index-url https://download.pytorch.org/whl/cpu
4747RUN pip install --no-deps sentence-transformers
48- RUN pip install --no-cache llama-stack==0.2.22
48+ RUN pip install --no-cache llama-stack==0.2.23
4949RUN mkdir -p ${HOME}/.llama ${HOME}/.cache
5050COPY distribution/run.yaml ${APP_ROOT}/run.yaml
5151
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ WORKDIR /opt/app-root
33
44RUN pip install sqlalchemy # somehow sqlalchemy[asyncio] is not sufficient
55{dependencies}
6- RUN pip install --no-cache llama-stack==0.2.22
6+ RUN pip install --no-cache llama-stack==0.2.23
77RUN mkdir -p ${{HOME}}/.llama ${{HOME}}/.cache
88COPY distribution/run.yaml ${{APP_ROOT}}/run.yaml
99
Original file line number Diff line number Diff line change 1313from pathlib import Path
1414
1515BASE_REQUIREMENTS = [
16- "llama-stack==0.2.22 " ,
16+ "llama-stack==0.2.23 " ,
1717]
1818
1919
@@ -95,6 +95,7 @@ def get_dependencies():
9595 else package
9696 for package in packages
9797 ]
98+ packages = set (packages )
9899
99100 # Determine command type and format accordingly
100101 if ("--index-url" in line ) or ("--extra-index-url" in line ):
You can’t perform that action at this time.
0 commit comments