mirror of
https://github.com/ollama/ollama.git
synced 2025-04-11 13:21:21 +02: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)
|
|
}
|