File size: 494 Bytes
62f00e5
 
 
 
a36db1b
62f00e5
a36db1b
62f00e5
 
 
a36db1b
62f00e5
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import "./globals.css";
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "SENTINEL — Multi-Agent Trust Calibration",
  description:
    "Train an orchestrator to decide who to trust, when to verify, and how to recover in long multi-agent tasks under adversarial pressure.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}