mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
# What does this PR do? This better separates UI from backend code, which was a point of confusion often for our beloved AI friends. ## Test Plan CI
7 lines
228 B
TypeScript
7 lines
228 B
TypeScript
"use client";
|
|
|
|
import { ChatCompletionsTable } from "@/components/chat-completions/chat-completions-table";
|
|
|
|
export default function ChatCompletionsPage() {
|
|
return <ChatCompletionsTable paginationOptions={{ limit: 20 }} />;
|
|
}
|