enzostvs's picture
enzostvs HF staff
refacto models + community
eb29a95
raw
history blame
247 Bytes
export async function load({ fetch }) {
const response = await fetch("/api/models?page=0&filter=hotest", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
})
const data = await response.json()
return data
}