Skip to content

Commit

Permalink
Keep migrating
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Nov 19, 2024
1 parent ea557f4 commit 239f5d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/(chat)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { cookies } from 'next/headers';
import { connection } from 'next/server';

import { Chat } from '@/components/chat';
import { DEFAULT_MODEL_NAME, models } from '@/lib/ai/models';
import { generateUUID } from '@/lib/utils';

export default async function Page() {
await connection();
const id = generateUUID();

const cookieStore = await cookies();
Expand Down

0 comments on commit 239f5d5

Please sign in to comment.