Add requirements.txt for both backends

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-19 12:04:43 +02:00
parent bc4b871cfb
commit 3dcb98f82f
3 changed files with 17 additions and 3 deletions
+3 -3
View File
@@ -154,10 +154,10 @@ After restart, the SGA confirms: `Vector Memory Area: 536870912 bytes (512 MB)`.
| `psycopg2-binary` | 2.9.11 | pgvector only | PostgreSQL driver | | `psycopg2-binary` | 2.9.11 | pgvector only | PostgreSQL driver |
| `oracledb` | 3.4.2 | Oracle only | Oracle driver (thin mode, no client libs needed) | | `oracledb` | 3.4.2 | Oracle only | Oracle driver (thin mode, no client libs needed) |
**Install all packages:** **Install packages:**
```bash ```bash
pip3 install fastapi uvicorn psycopg2-binary oracledb sentence-transformers \ pip3 install -r pgvector-demo/backend/requirements.txt --break-system-packages
Pillow python-dotenv --break-system-packages pip3 install -r oravector-demo/backend/requirements.txt --break-system-packages
``` ```
--- ---
+7
View File
@@ -0,0 +1,7 @@
fastapi==0.135.2
uvicorn==0.42.0
oracledb==3.4.2
sentence-transformers==5.3.0
torch==2.11.0
Pillow==10.2.0
python-dotenv==1.0.1
+7
View File
@@ -0,0 +1,7 @@
fastapi==0.135.2
uvicorn==0.42.0
psycopg2-binary==2.9.11
sentence-transformers==5.3.0
torch==2.11.0
Pillow==10.2.0
python-dotenv==1.0.1