bolt.diy / app /routes /api.models.ts
yunat
let the ollama models be auto generated from ollama api
0d77763
raw
history blame
157 Bytes
import { json } from '@remix-run/cloudflare';
import { MODEL_LIST } from '~/utils/constants';
export async function loader() {
return json(MODEL_LIST);
}