Spaces:
Sleeping
Sleeping
File size: 758 Bytes
3bf50ea 76d8129 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
from fastapi import FastAPI
from utils import process_news
app = FastAPI(title="News Summarization & TTS API")
@app.get("/")
def read_root():
return {"message": "Welcome to the News Summarization & TTS API"}
@app.get("/news/{company_name}")
def get_news(company_name: str):
"""
Fetch processed news for a given company.
Returns:
• A list of articles with title, URL, date, content, sentiment, and score.
• A combined summary of all articles.
• A Hindi translated summary.
• The TTS audio file path.
• Comparative sentiment analysis including a visual graph.
"""
return process_news(company_name)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
|