mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-27 19:12:00 +00:00
19 lines
353 B
TypeScript
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>
|
|
);
|
|
}
|