Update requirements.txt - Add Technology Startup specialization and multi-AI provider support
Browse files- requirements.txt +21 -19
requirements.txt
CHANGED
|
@@ -1,19 +1,21 @@
|
|
| 1 |
-
# BIOS-kernel-v1 β Python dependencies
|
| 2 |
-
# pip install -r requirements.txt
|
| 3 |
-
|
| 4 |
-
# ββ Core βββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 5 |
-
psycopg[binary]>=3.1.0 # NeonDB / PostgreSQL (psycopg v3)
|
| 6 |
-
|
| 7 |
-
# ββ LLM Backends (install whichever you use) βββββββββββββββββ
|
| 8 |
-
groq>=0.9.0 # Groq API (llama-3.3-70b, fastest free option)
|
| 9 |
-
huggingface_hub>=0.24.0 # HuggingFace Inference API + BIOS-Insight-v1
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
#
|
| 13 |
-
|
| 14 |
-
#
|
| 15 |
-
#
|
| 16 |
-
#
|
| 17 |
-
|
| 18 |
-
#
|
| 19 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
# BIOS-kernel-v1 β Python dependencies
|
| 2 |
+
# pip install -r requirements.txt
|
| 3 |
+
|
| 4 |
+
# ββ Core βββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 5 |
+
psycopg[binary]>=3.1.0 # NeonDB / PostgreSQL (psycopg v3)
|
| 6 |
+
|
| 7 |
+
# ββ LLM Backends (install whichever you use) βββββββββββββββββ
|
| 8 |
+
groq>=0.9.0 # Groq API (llama-3.3-70b, fastest free option)
|
| 9 |
+
huggingface_hub>=0.24.0 # HuggingFace Inference API + BIOS-Insight-v1
|
| 10 |
+
openai>=1.0.0 # OpenAI API (GPT-4, GPT-3.5)
|
| 11 |
+
google-generativeai>=0.8.0 # Gemini API (Gemini Pro)
|
| 12 |
+
anthropic>=0.34.0 # Anthropic Claude (fallback)
|
| 13 |
+
|
| 14 |
+
# ββ Local inference (optional, GPU required) βββββββββββββββββ
|
| 15 |
+
# transformers>=4.44.0
|
| 16 |
+
# torch>=2.3.0
|
| 17 |
+
# accelerate>=0.31.0
|
| 18 |
+
# bitsandbytes>=0.43.0 # for 4-bit quantisation
|
| 19 |
+
|
| 20 |
+
# ββ Utilities βββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 21 |
+
python-dotenv>=1.0.0 # load .env files
|