Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
T1ckbase
/
bolt.diy
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0ee3736
bolt.diy
/
app
/
routes
/
api.models.ts
yunat
let the ollama models be auto generated from ollama api
0d77763
11 months ago
raw
Copy download link
history
blame
Safe
157 Bytes
import
{ json }
from
'@remix-run/cloudflare'
;
import
{
MODEL_LIST
}
from
'~/utils/constants'
;
export
async
function
loader
(
) {
return
json
(
MODEL_LIST
);
}