mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-19 19:30:05 +00:00
## Summary: This commit adds infinite scroll pagination to the chat completions and responses tables. ## Test Plan: 1. Run unit tests: npm run test 2. Manual testing: Navigate to chat completions/responses pages 3. Verify infinite scroll triggers when approaching bottom 4. Added playwright tests: npm run test:e2e
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 }} />;
|
|
}
|