bolt.diy/app/routes/api.models.ts
2025-03-14 07:27:30 -07:00

7 lines
153 B
TypeScript

import { json } from '~/lib/remix-types';
import { MODEL_LIST } from '~/utils/constants';
export async function loader() {
return json(MODEL_LIST);
}