mirror of
https://github.com/open-gitagent/langship.sh.git
synced 2026-08-03 07:21:04 +02:00
11 lines
403 B
TypeScript
11 lines
403 B
TypeScript
import { EmptySection } from "@/components/empty-section";
|
|||
|
|
|
||
|
|
export default function GatewayPage() {
|
||
|
|
return (
|
||
|
|
<EmptySection
|
||
|
|
title="Gateway"
|
||
|
|
description="Public ingress for deployed agents — routes, auth, rate limits, OpenTelemetry export. Replaces the per-runtime gateway (Bedrock AgentCore endpoints, Vertex Reasoning Engine routes, K8s Ingress) with a uniform layer."
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|