bolt.diy / app /routes /api.models.ts
aproli90's picture
Upload 289 files
2e1ab99 verified
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);
}