Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +16 -24
requirements.txt
CHANGED
|
@@ -1,33 +1,25 @@
|
|
| 1 |
# ── Core framework ──────────────────────────────────────────────────────────
|
| 2 |
-
langchain
|
| 3 |
-
langchain-
|
| 4 |
-
langchain-
|
| 5 |
-
langchain-experimental==0.3.3
|
| 6 |
|
| 7 |
# ── LLM providers ───────────────────────────────────────────────────────────
|
| 8 |
-
langchain-google-genai
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
langchain-
|
| 12 |
-
openai==1.54.3 # (all via OpenAI-compatible endpoints)
|
| 13 |
-
|
| 14 |
-
langchain-anthropic==0.3.0 # Anthropic Claude
|
| 15 |
-
anthropic==0.37.1
|
| 16 |
-
|
| 17 |
-
langchain-mistralai==0.2.1 # Mistral AI
|
| 18 |
-
mistralai==1.2.1
|
| 19 |
|
| 20 |
# ── Data handling ────────────────────────────────────────────────────────────
|
| 21 |
-
pandas
|
| 22 |
-
openpyxl
|
| 23 |
-
xlrd
|
| 24 |
|
| 25 |
# ── Visualization ────────────────────────────────────────────────────────────
|
| 26 |
-
matplotlib
|
| 27 |
-
seaborn
|
| 28 |
-
plotly
|
| 29 |
|
| 30 |
# ── UI & utilities ───────────────────────────────────────────────────────────
|
| 31 |
-
streamlit
|
| 32 |
-
python-dotenv
|
| 33 |
-
tabulate
|
|
|
|
| 1 |
# ── Core framework ──────────────────────────────────────────────────────────
|
| 2 |
+
langchain
|
| 3 |
+
langchain-community
|
| 4 |
+
langchain-experimental
|
|
|
|
| 5 |
|
| 6 |
# ── LLM providers ───────────────────────────────────────────────────────────
|
| 7 |
+
langchain-google-genai # Google Gemini
|
| 8 |
+
langchain-openai # OpenAI GPT · xAI Grok · Meta Llama · Alibaba Qwen
|
| 9 |
+
langchain-anthropic # Anthropic Claude
|
| 10 |
+
langchain-mistralai # Mistral AI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
# ── Data handling ────────────────────────────────────────────────────────────
|
| 13 |
+
pandas
|
| 14 |
+
openpyxl
|
| 15 |
+
xlrd
|
| 16 |
|
| 17 |
# ── Visualization ────────────────────────────────────────────────────────────
|
| 18 |
+
matplotlib
|
| 19 |
+
seaborn
|
| 20 |
+
plotly
|
| 21 |
|
| 22 |
# ── UI & utilities ───────────────────────────────────────────────────────────
|
| 23 |
+
streamlit
|
| 24 |
+
python-dotenv
|
| 25 |
+
tabulate
|