File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ RUN pip install \
4444RUN pip install \
4545 llama_stack_provider_ragas[remote]==0.3.0
4646RUN pip install \
47- --extra-index-url https://test.pypi.org/simple/ llama_stack_provider_trustyai_fms==0.2.3
47+ llama_stack_provider_trustyai_fms==0.2.3
4848RUN pip install --extra-index-url https://download.pytorch.org/whl/cpu torch 'torchao>=0.12.0' torchvision
4949RUN pip install --no-deps sentence-transformers
5050RUN pip install --no-cache llama-stack==0.2.22
Original file line number Diff line number Diff line change @@ -120,13 +120,7 @@ def get_dependencies():
120120 all_deps .extend (sorted (no_deps )) # No-deps installs
121121 all_deps .extend (sorted (no_cache )) # No-cache installs
122122
123- # TODO: Remove this once we have a stable PyPI index for trustyai_fms
124- # Fix trustyai_fms package to use test PyPI index
125123 result = "\n " .join (all_deps )
126- result = result .replace (
127- "llama_stack_provider_trustyai_fms==0.2.3" ,
128- "--extra-index-url https://test.pypi.org/simple/ llama_stack_provider_trustyai_fms==0.2.3" ,
129- )
130124 return result
131125 except subprocess .CalledProcessError as e :
132126 print (f"Error executing command: { e } " )
You can’t perform that action at this time.
0 commit comments