ayush2917 commited on
Commit
c4ab69e
Β·
verified Β·
1 Parent(s): 87fa519

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -17
README.md CHANGED
@@ -1,30 +1,43 @@
1
- # Financial Agentic Insights System (FAIS) πŸ’Ή
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  ![FAIS Demo](https://img.shields.io/badge/Live-Demo-blue)
4
  ![Python](https://img.shields.io/badge/Python-3.10+-blue)
5
  ![License](https://img.shields.io/badge/License-MIT-green)
6
 
7
- FAIS is an autonomous AI system that delivers personalized financial intelligence for Indian investors, combining real-time news aggregation, sentiment analysis, and portfolio tracking.
8
 
9
  ## 🌟 Features
10
 
11
- | Feature | Description | Tech Used |
12
- |---------|-------------|-----------|
13
- | πŸ“° Smart News Aggregation | Curates financial news from top Indian sources | NewsAPI |
14
- | 🧠 Sentiment Analysis | Evaluates market sentiment in real-time | DistilBERT |
15
- | πŸ“ˆ Live Stock Data | Tracks Nifty 50 and individual stocks | Alpha Vantage |
16
- | πŸ”” Personalized Alerts | Custom push notifications | OneSignal |
17
- | πŸ“Š Portfolio Manager | Virtual holdings with P/L tracking | SQLite |
18
 
19
- ## πŸš€ Quick Deployment
 
 
 
 
20
 
21
- ### Hugging Face Spaces
22
- [![Deploy on Spaces](https://huggingface.co/datasets/huggingface/badges/raw/main/deploy-to-spaces-md.svg)](https://huggingface.co/spaces)
23
 
24
- 1. Create new Space with Docker SDK
25
- 2. Set these environment variables:
 
26
  ```env
27
- NEWS_API_KEY=your_key
28
- ALPHA_VANTAGE_KEY=your_key
29
- ONESIGNAL_APP_ID=your_id
30
  DATABASE_PATH=/data/news.db
 
1
+ ---
2
+ title: Financial Agentic Insights System
3
+ emoji: πŸ’Ή
4
+ colorFrom: indigo
5
+ colorTo: purple
6
+ sdk: docker
7
+ sdk_version: "20.10.17"
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
+ # Financial Agentic Insights System (FAIS)
13
 
14
  ![FAIS Demo](https://img.shields.io/badge/Live-Demo-blue)
15
  ![Python](https://img.shields.io/badge/Python-3.10+-blue)
16
  ![License](https://img.shields.io/badge/License-MIT-green)
17
 
18
+ FAIS is an autonomous AI system that delivers personalized financial intelligence for Indian investors.
19
 
20
  ## 🌟 Features
21
 
22
+ ### Core Capabilities
23
+ - πŸ“° **Smart News Aggregation** (Moneycontrol, Economic Times via NewsAPI)
24
+ - 🧠 **Real-time Sentiment Analysis** (DistilBERT model)
25
+ - πŸ“ˆ **Live Market Data** (Nifty 50 via Alpha Vantage)
26
+ - πŸ”” **Personalized Alerts** (OneSignal integration)
 
 
27
 
28
+ ### Technical Highlights
29
+ - 🐳 Dockerized deployment
30
+ - πŸ€– Agentic workflow with APScheduler
31
+ - πŸ—ƒοΈ SQLite database with daily maintenance
32
+ - πŸ“Š MCP server for standardized data access
33
 
34
+ ## πŸš€ Deployment
 
35
 
36
+ ### Hugging Face Spaces
37
+ 1. Click "Duplicate this Space"
38
+ 2. Configure environment variables:
39
  ```env
40
+ NEWS_API_KEY=your_newsapi_key
41
+ ALPHA_VANTAGE_KEY=your_alpha_key
42
+ ONESIGNAL_APP_ID=your_app_id
43
  DATABASE_PATH=/data/news.db