eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
15 lines (14 loc) • 644 B
TypeScript
import type { NitroArtifactsConfig } from "#internal/nitro/routes/runtime-artifacts.js";
type AgentInfoRouteMode = "development" | "production";
interface AgentInfoRouteInput extends NitroArtifactsConfig {
readonly mode?: AgentInfoRouteMode;
}
/**
* Builds the package-owned JSON inspection response for the current agent.
*
* The route keeps the same default auth chain as the eve channel:
* local development requests are accepted by hostname, while deployed
* Vercel targets require a valid OIDC bearer.
*/
export declare function handleAgentInfoRequest(input: AgentInfoRouteInput, request: Request): Promise<Response>;
export {};