mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
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 }} />;
|
|
}
|