fix: corrected YAML metadata
Browse files
README.md
CHANGED
@@ -1,26 +1,20 @@
|
|
1 |
---
|
2 |
-
title: Fingraph
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
-
|
11 |
-
-
|
12 |
-
-
|
13 |
-
-
|
|
|
14 |
|
15 |
-
|
16 |
-
1. Enter a finance-related search term (e.g. "tech stocks").
|
17 |
-
2. Enter a stock symbol (e.g. "AAPL").
|
18 |
-
3. The app fetches relevant news and summarizes it.
|
19 |
-
4. It pulls recent Yahoo Finance data and analyzes it using the LLM.
|
20 |
|
21 |
-
|
22 |
-
pip install -r requirements.txt
|
23 |
-
python app.py
|
24 |
|
25 |
-
|
26 |
-
---
|
|
|
1 |
---
|
2 |
+
title: Fingraph
|
3 |
+
sdk: gradio
|
4 |
+
sdk_version: 5.31.0
|
5 |
+
app_file: app.py
|
6 |
+
license: mit
|
7 |
+
tags:
|
8 |
+
- finance
|
9 |
+
- gradio
|
10 |
+
- huggingface
|
11 |
+
- LLaMA3
|
12 |
+
- langchain
|
13 |
+
- stock-analysis
|
14 |
+
---
|
15 |
|
16 |
+
# Fingraph 🧠📈
|
|
|
|
|
|
|
|
|
17 |
|
18 |
+
The fortune teller of financial trends.
|
|
|
|
|
19 |
|
20 |
+
This app uses LLaMA 3.1 + LangChain-style prompts to summarize financial news and analyze stock data interactively with Gradio.
|
|