Self-hosted, Docker-based agentic troubleshooting platform: FastAPI backend + LangGraph agent, Next.js UI, tiered LLM routing (local Ollama -> Gemini -> DeepSeek -> OpenRouter), MCP server manager, encrypted device credentials, RBAC, audit log, project-memory + Obsidian integrations, and editable troubleshooting decision rules tuned for the GeneseasX vessel stack. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
import "./globals.css";
|
|
import type { Metadata } from "next";
|
|
import Providers from "@/components/providers";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Agentic OS",
|
|
description: "Self-hosted agentic troubleshooting platform",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|