Moonlit
commited on
Commit
·
3dfa5d8
1
Parent(s):
b39c111
Fix missing 'ollama' package in requirements.txt (#621)
Browse files### What problem does this PR solve?
This commit resolves an issue where the 'ollama' package was
inadvertently omitted from the requirements.txt file. The package has
now been added to ensure all dependencies are correctly installed for
the project.
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
- requirements.txt +1 -0
requirements.txt
CHANGED
@@ -69,6 +69,7 @@ nvidia-cusparse-cu12==12.1.0.106
|
|
69 |
nvidia-nccl-cu12==2.19.3
|
70 |
nvidia-nvjitlink-cu12==12.3.101
|
71 |
nvidia-nvtx-cu12==12.1.105
|
|
|
72 |
onnxruntime-gpu==1.17.1
|
73 |
openai==1.12.0
|
74 |
opencv-python==4.9.0.80
|
|
|
69 |
nvidia-nccl-cu12==2.19.3
|
70 |
nvidia-nvjitlink-cu12==12.3.101
|
71 |
nvidia-nvtx-cu12==12.1.105
|
72 |
+
ollama==0.1.9
|
73 |
onnxruntime-gpu==1.17.1
|
74 |
openai==1.12.0
|
75 |
opencv-python==4.9.0.80
|