Spaces:
				
			
			
	
			
			
		Sleeping
		
	
	
	
			
			
	
	
	
	
		
		
		Sleeping
		
	Update requirements.txt
Browse files- requirements.txt +17 -0
    	
        requirements.txt
    CHANGED
    
    | @@ -1,10 +1,27 @@ | |
|  | |
| 1 | 
             
            streamlit>=1.36
         | 
| 2 | 
             
            pydantic>=2.7
         | 
| 3 | 
             
            python-dotenv>=1.0
         | 
| 4 | 
             
            pandas>=2.2
         | 
| 5 | 
             
            numpy>=1.26
         | 
|  | |
|  | |
| 6 | 
             
            faiss-cpu>=1.8
         | 
| 7 | 
             
            sentence-transformers>=3.0
         | 
| 8 | 
             
            requests>=2.32
         | 
| 9 | 
             
            pyyaml>=6.0
         | 
| 10 | 
             
            tqdm>=4.66
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | 
|  | |
| 1 | 
            +
            # Core dependencies
         | 
| 2 | 
             
            streamlit>=1.36
         | 
| 3 | 
             
            pydantic>=2.7
         | 
| 4 | 
             
            python-dotenv>=1.0
         | 
| 5 | 
             
            pandas>=2.2
         | 
| 6 | 
             
            numpy>=1.26
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            # RAG/Search functionality (your existing)
         | 
| 9 | 
             
            faiss-cpu>=1.8
         | 
| 10 | 
             
            sentence-transformers>=3.0
         | 
| 11 | 
             
            requests>=2.32
         | 
| 12 | 
             
            pyyaml>=6.0
         | 
| 13 | 
             
            tqdm>=4.66
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            # AWS Chronos for time series forecasting
         | 
| 16 | 
            +
            git+https://github.com/amazon-science/chronos-forecasting.git
         | 
| 17 | 
            +
            torch>=1.9.0
         | 
| 18 | 
            +
            transformers>=4.21.0
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            # Financial data and visualization
         | 
| 21 | 
            +
            yfinance>=0.2.0
         | 
| 22 | 
            +
            plotly>=5.0.0
         | 
| 23 | 
            +
            matplotlib>=3.5.0
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            # Additional utilities
         | 
| 26 | 
            +
            python-dateutil>=2.8.0
         | 
| 27 | 
            +
            accelerate>=0.20.0
         | 
