-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
37 lines (29 loc) · 1 KB
/
main.py
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
27
28
29
30
31
32
33
34
35
36
37
"""Módulo de execução da API."""
import json
from fastapi import FastAPI
from fastapi.encoders import jsonable_encoder
from fastapi.responses import JSONResponse
from core.constants import NEWS_PATH
from core.news import coletar_noticias, gerar_resumo_e_tema, load_feeds_json
app = FastAPI()
@app.get("/gerar_tema")
def generate_theme():
"""Gera um tema de redação baseado em notícias recentes.
Args:
None
Returns:
dict: Tema de redação.
"""
# Coleta as notícias e gera o tema de redação
news_source = load_feeds_json(NEWS_PATH)
news_url = [news["URL"] for news in news_source]
noticias = coletar_noticias(news_url)
try:
resumo_e_tema = gerar_resumo_e_tema(noticias)
resumo_e_tema = json.loads(resumo_e_tema)
# TODO: remover except genérico
except Exception as e:
return JSONResponse(content={"error": str(e)})
# extrai o JSON
tema_json = jsonable_encoder(resumo_e_tema)
return JSONResponse(content=tema_json)