llama-stack-mirror/llama_stack/ui/app/logs/chat-completions/layout.tsx
Eric Huang de53390c1c responses table, responses details
# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
2025-05-27 21:23:11 -07:00

19 lines
353 B
TypeScript

"use client";
import React from "react";
import LogsLayout from "@/components/layout/logs-layout";
export default function ChatCompletionsLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<LogsLayout
sectionLabel="Chat Completions"
basePath="/logs/chat-completions"
>
{children}
</LogsLayout>
);
}