File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
quickstarts/01-hello-world Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ dev = [
70
70
" tox>=4.0.0,<5.0.0" ,
71
71
]
72
72
vectorstore = [
73
+ " torch>=2.7.0" ,
73
74
" sentence-transformers>=4.1.0,<5.0.0" ,
74
75
" chromadb>=0.4.22,<2.0.0" ,
75
76
" posthog<6.0.0" ,
Original file line number Diff line number Diff line change @@ -338,12 +338,19 @@ if __name__ == '__main__':
338
338
pip install sentence-transformers chromadb ' posthog<6.0.0'
339
339
```
340
340
341
+ ** Or install with extras:**
342
+ From the root directory,
343
+ ``` bash
344
+ pip install -e " .[vectorstore]"
345
+ ```
346
+
341
347
** Using uv:**
342
348
``` bash
343
349
uv add sentence-transformers chromadb ' posthog<6.0.0'
344
350
```
345
351
346
- ** Or install with extras (uv only):**
352
+ ** Or install with extras:**
353
+ From the root directory,
347
354
``` bash
348
355
uv pip install -e " .[vectorstore]"
349
356
```
You can’t perform that action at this time.
0 commit comments