Seth0330 commited on
Commit
5d4ff05
·
verified ·
1 Parent(s): de1aee4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +14 -4
requirements.txt CHANGED
@@ -1,9 +1,19 @@
 
1
  streamlit
2
- openai>=1.0.0
3
  pandas
4
  numpy
5
- langchain>=0.1.0
 
 
 
 
 
6
  langchain-core
 
7
  langchain-openai
8
- pydantic
9
- tqdm
 
 
 
 
 
1
+ # Core app
2
  streamlit
 
3
  pandas
4
  numpy
5
+
6
+ # OpenAI LLM & embeddings (for openai>=1.0)
7
+ openai>=1.0.0
8
+
9
+ # LangChain components
10
+ langchain
11
  langchain-core
12
+ langchain-community
13
  langchain-openai
14
+
15
+ # For SQLite (Python stdlib, but add for safety in HF Spaces)
16
+ pysqlite3-binary
17
+
18
+ # General
19
+ tqdm