Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +35 -33
requirements.txt
CHANGED
@@ -1,33 +1,35 @@
|
|
1 |
-
# Core Streamlit UI
|
2 |
-
streamlit
|
3 |
-
|
4 |
-
# LangChain Framework & Integrations
|
5 |
-
# NOTE: LangChain releases often, pin versions for stability
|
6 |
-
langchain
|
7 |
-
langchain-core
|
8 |
-
langchain-openai
|
9 |
-
langchain-groq
|
10 |
-
langchain-google-genai
|
11 |
-
langchain-anthropic
|
12 |
-
|
13 |
-
# Web Search Client
|
14 |
-
tavily-python
|
15 |
-
|
16 |
-
# Data Validation
|
17 |
-
pydantic
|
18 |
-
|
19 |
-
# Retry Logic
|
20 |
-
tenacity
|
21 |
-
|
22 |
-
# UML Diagram Generation (Requires Java runtime)
|
23 |
-
plantuml
|
24 |
-
|
25 |
-
# Environment Variable Loading
|
26 |
-
python-dotenv
|
27 |
-
|
28 |
-
# Typing Helpers (Often a dependency, but good to include explicitly)
|
29 |
-
typing-extensions
|
30 |
-
|
31 |
-
# HTTP Clients (Often dependencies of LLM/API clients, pin for stability)
|
32 |
-
httpx
|
33 |
-
requests
|
|
|
|
|
|
1 |
+
# Core Streamlit UI
|
2 |
+
streamlit
|
3 |
+
|
4 |
+
# LangChain Framework & Integrations
|
5 |
+
# NOTE: LangChain releases often, pin versions for stability
|
6 |
+
langchain
|
7 |
+
langchain-core
|
8 |
+
langchain-openai
|
9 |
+
langchain-groq
|
10 |
+
langchain-google-genai
|
11 |
+
langchain-anthropic
|
12 |
+
|
13 |
+
# Web Search Client
|
14 |
+
tavily-python
|
15 |
+
|
16 |
+
# Data Validation
|
17 |
+
pydantic
|
18 |
+
|
19 |
+
# Retry Logic
|
20 |
+
tenacity
|
21 |
+
|
22 |
+
# UML Diagram Generation (Requires Java runtime)
|
23 |
+
plantuml
|
24 |
+
|
25 |
+
# Environment Variable Loading
|
26 |
+
python-dotenv
|
27 |
+
|
28 |
+
# Typing Helpers (Often a dependency, but good to include explicitly)
|
29 |
+
typing-extensions
|
30 |
+
|
31 |
+
# HTTP Clients (Often dependencies of LLM/API clients, pin for stability)
|
32 |
+
httpx
|
33 |
+
requests
|
34 |
+
|
35 |
+
nest_asyncio
|