Nam Fam commited on
Commit
1853be3
·
2 Parent(s): 69811da 80e5d3b

Merge branch 'main' of https://huggingface.co/spaces/namfam/TalkToData

Browse files
Files changed (2) hide show
  1. Dockerfile +4 -0
  2. requirements.txt +6 -1
Dockerfile CHANGED
@@ -19,6 +19,10 @@ RUN chmod -R a+w /app
19
  # Copy application code
20
  COPY . .
21
 
 
 
 
 
22
  # Expose Streamlit default port
23
  EXPOSE 8501
24
 
 
19
  # Copy application code
20
  COPY . .
21
 
22
+ # Ensure output directory exists and is writable
23
+ RUN mkdir -p output \
24
+ && chmod -R 777 output
25
+
26
  # Expose Streamlit default port
27
  EXPOSE 8501
28
 
requirements.txt CHANGED
@@ -3,6 +3,8 @@ pandas==2.2.0
3
  numpy==1.26.4
4
  langchain==0.3.25
5
  langchain_core==0.3.58
 
 
6
  langchain-google-genai==2.0.4
7
  langchain_experimental==0.3.4
8
  langgraph==0.3.31
@@ -10,4 +12,7 @@ python-dotenv==1.0.1
10
  sqlalchemy==2.0.2
11
  guardrails-ai==0.6.6
12
  openpyxl==3.1.5
13
- pydantic==2.9.2
 
 
 
 
3
  numpy==1.26.4
4
  langchain==0.3.25
5
  langchain_core==0.3.58
6
+ langchain_community==0.3.7
7
+ langchain_experimental==0.3.3
8
  langchain-google-genai==2.0.4
9
  langchain_experimental==0.3.4
10
  langgraph==0.3.31
 
12
  sqlalchemy==2.0.2
13
  guardrails-ai==0.6.6
14
  openpyxl==3.1.5
15
+ pydantic==2.9.2
16
+ matplotlib==3.8.3
17
+ pandas==2.2.0
18
+ tabulate==0.9.0