Spaces:
Sleeping
Sleeping
Initialization
Browse files- .gitattributes +1 -0
- SDLC.py +0 -0
- SDLC_Workflow_Graph_Diagram.png +3 -0
- app.py +0 -0
- requirements.txt +35 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
SDLC_Workflow_Graph_Diagram.png filter=lfs diff=lfs merge=lfs -text
|
SDLC.py
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
SDLC_Workflow_Graph_Diagram.png
ADDED
|
Git LFS Details
|
app.py
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
requirements.txt
ADDED
|
@@ -0,0 +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
|
| 34 |
+
|
| 35 |
+
nest_asyncio
|