mirror of https://github.com/dapr/dapr-agents.git
fix: bump us to numpy 2.X to fix user err on discord (#170)
Signed-off-by: Samantha Coyle <sam@diagrid.io> Co-authored-by: Yaron Schneider <schneider.yaron@live.com>
This commit is contained in:
parent
454b0c23ee
commit
0a0dd31fc1
|
|
@ -70,6 +70,7 @@ dev = [
|
|||
"tox>=4.0.0,<5.0.0",
|
||||
]
|
||||
vectorstore = [
|
||||
"torch>=2.7.0",
|
||||
"sentence-transformers>=4.1.0,<5.0.0",
|
||||
"chromadb>=0.4.22,<2.0.0",
|
||||
"posthog<6.0.0",
|
||||
|
|
|
|||
|
|
@ -338,12 +338,19 @@ if __name__ == '__main__':
|
|||
pip install sentence-transformers chromadb 'posthog<6.0.0'
|
||||
```
|
||||
|
||||
**Or install with extras:**
|
||||
From the root directory,
|
||||
```bash
|
||||
pip install -e ".[vectorstore]"
|
||||
```
|
||||
|
||||
**Using uv:**
|
||||
```bash
|
||||
uv add sentence-transformers chromadb 'posthog<6.0.0'
|
||||
```
|
||||
|
||||
**Or install with extras (uv only):**
|
||||
**Or install with extras:**
|
||||
From the root directory,
|
||||
```bash
|
||||
uv pip install -e ".[vectorstore]"
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue