Commit 8cc92447 authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

fix web build

parent 39b289c6
import models from '../../../../models.json'
import { NextResponse } from 'next/server'
export async function GET(re) {
export async function GET() {
return NextResponse.json(models)
}
......@@ -5,7 +5,7 @@ export const metadata = {
description: 'A tool for running large language models',
}
export default function RootLayout({ children }) {
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang='en'>
<body>{children}</body>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment