ai-news-robot / src /dailyPapers /getDailyPapers.mts
jbilcke-hf's picture
jbilcke-hf HF Staff
small improve plus add automation for papers and weather
88b2903
raw
history blame contribute delete
275 Bytes
import { DailyPapersApiResponse } from "./types.mts"
export async function getDailyPapers(): Promise<DailyPapersApiResponse> {
const res = await fetch(`https://hf.co/api/daily_papers`)
const articles = (await res.json()) as DailyPapersApiResponse
return articles
}