Sasmita Harini commited on
Commit
f5e336b
·
1 Parent(s): 37b27d1

Updated app.py with new title and utils.py with latest fetch logic

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. README.md +17 -10
.DS_Store ADDED
Binary file (6.15 kB). View file
 
README.md CHANGED
@@ -1,13 +1,20 @@
1
- # News Summarization and Text-to-Speech Application
 
 
 
 
 
 
 
 
 
2
 
3
- This application fetches news articles about a specified company, summarizes them, performs sentiment analysis, and generates a Hindi audio summary of the final sentiment.
4
 
5
- ## Prerequisites
6
- - Python 3.10+
7
- - A Groq API key (set as an environment variable: `GROQ_API_KEY`)
8
 
9
- ## Setup Instructions
10
- 1. Clone the repository:
11
- ```bash
12
- git clone <repository-url>
13
- cd <repository-directory>
 
1
+ ---
2
+ title: News Summarization App
3
+ emoji: 📰
4
+ colorFrom: blue
5
+ colorTo: green
6
+ sdk: streamlit
7
+ sdk_version: 1.36.0
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
 
12
+ # News Summarization App
13
 
14
+ This app fetches news articles about a company, summarizes them, analyzes sentiment, and provides a Hindi audio translation of the sentiment analysis.
 
 
15
 
16
+ ## Requirements
17
+ - See `requirements.txt` for dependencies.
18
+
19
+ ## Backend
20
+ - The FastAPI backend (`api.py`) runs alongside the Streamlit app to handle news fetching and processing.