Spaces:
Build error
Build error
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,30 +1,43 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |

|
| 4 |

|
| 5 |

|
| 6 |
|
| 7 |
-
FAIS is an autonomous AI system that delivers personalized financial intelligence for Indian investors
|
| 8 |
|
| 9 |
## π Features
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
| π Personalized Alerts | Custom push notifications | OneSignal |
|
| 17 |
-
| π Portfolio Manager | Virtual holdings with P/L tracking | SQLite |
|
| 18 |
|
| 19 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
##
|
| 22 |
-
[](https://huggingface.co/spaces)
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
|
|
|
| 26 |
```env
|
| 27 |
-
NEWS_API_KEY=
|
| 28 |
-
ALPHA_VANTAGE_KEY=
|
| 29 |
-
ONESIGNAL_APP_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 |

|
| 15 |

|
| 16 |

|
| 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
|