mirror of
https://github.com/dogkeeper886/ollama37.git
synced 2025-12-11 16:26:59 +00:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import models from '../../../../models.json'
|
|
import { NextResponse } from 'next/server'
|
|
|
|
export async function GET() {
|
|
return NextResponse.json(models)
|
|
}
|