Omartificial-Intelligence-Space commited on
Commit
b5f77f6
·
verified ·
1 Parent(s): be50698

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +24 -0
requirements.txt ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies for Chart Generation Gradio App
2
+ # Ready for HuggingFace Spaces deployment
3
+
4
+ # Gradio for web interface
5
+ gradio>=4.0.0
6
+
7
+ # Data processing
8
+ pandas>=2.0.0
9
+ numpy>=1.24.0
10
+
11
+ # Visualization
12
+ matplotlib>=3.7.0
13
+ Pillow>=10.0.0
14
+
15
+ # LLM APIs
16
+ openai>=1.0.0
17
+ anthropic>=0.18.0
18
+
19
+ # Environment variables
20
+ python-dotenv>=1.0.0
21
+
22
+ # Standard library helpers (usually included, but explicit is better)
23
+ # json, re, base64, mimetypes, pathlib - all included in Python stdlib
24
+