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:
Sam 2025-08-01 10:32:35 -05:00 committed by GitHub
parent 454b0c23ee
commit 0a0dd31fc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -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",

View File

@ -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]"
```