enzostvs's picture
enzostvs HF staff
models list
98b0aa6
raw
history blame
233 Bytes
export async function load({ fetch }) {
const response = await fetch("/api/models?page=1", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
})
const data = await response.json()
return data
}