Spaces:
Sleeping
Sleeping
Removed hardcode version
Browse files- requirements.txt +32 -32
requirements.txt
CHANGED
@@ -1,32 +1,32 @@
|
|
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 |
-
# Add other langchain provider packages if you implement them (e.g., langchain-google-genai, langchain-anthropic)
|
11 |
-
|
12 |
-
# Web Search Client
|
13 |
-
tavily-python
|
14 |
-
|
15 |
-
# Data Validation
|
16 |
-
pydantic
|
17 |
-
|
18 |
-
# Retry Logic
|
19 |
-
tenacity
|
20 |
-
|
21 |
-
# UML Diagram Generation (Requires Java runtime)
|
22 |
-
plantuml
|
23 |
-
|
24 |
-
# Environment Variable Loading
|
25 |
-
python-dotenv
|
26 |
-
|
27 |
-
# Typing Helpers (Often a dependency, but good to include explicitly)
|
28 |
-
typing-extensions
|
29 |
-
|
30 |
-
# HTTP Clients (Often dependencies of LLM/API clients, pin for stability)
|
31 |
-
httpx
|
32 |
-
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 |
+
# Add other langchain provider packages if you implement them (e.g., langchain-google-genai, langchain-anthropic)
|
11 |
+
|
12 |
+
# Web Search Client
|
13 |
+
tavily-python
|
14 |
+
|
15 |
+
# Data Validation
|
16 |
+
pydantic
|
17 |
+
|
18 |
+
# Retry Logic
|
19 |
+
tenacity
|
20 |
+
|
21 |
+
# UML Diagram Generation (Requires Java runtime)
|
22 |
+
plantuml
|
23 |
+
|
24 |
+
# Environment Variable Loading
|
25 |
+
python-dotenv
|
26 |
+
|
27 |
+
# Typing Helpers (Often a dependency, but good to include explicitly)
|
28 |
+
typing-extensions
|
29 |
+
|
30 |
+
# HTTP Clients (Often dependencies of LLM/API clients, pin for stability)
|
31 |
+
httpx
|
32 |
+
requests
|