shaikhmohammedmujammil commited on
Commit
5c02c28
·
verified ·
1 Parent(s): daf77da

Initialization

Browse files
Files changed (5) hide show
  1. .gitattributes +1 -0
  2. SDLC.py +0 -0
  3. SDLC_Workflow_Graph_Diagram.png +3 -0
  4. app.py +0 -0
  5. 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

  • SHA256: ae65b7914b1958e509d4645fe41b39bb2022ab3366f6cb9d28d051a111a3faf3
  • Pointer size: 131 Bytes
  • Size of remote file: 269 kB
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