eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 727 B
TypeScript
import type { AgentInfoResult } from "#client/agent-info-schema.js";
import type { AgentInfoManifestData } from "#internal/nitro/routes/agent-info/load-agent-info-data.js";
import { type GatewayCredentialPresence } from "#internal/resolve-model-endpoint-status.js";
import type { ChatGptAuthState } from "#public/models/openai/chatgpt/token-broker.js";
export type AgentInfoResponse = AgentInfoResult;
/** Projects v4 exclusively from the effective compiled graph. */
export declare function buildAgentInfoResponse(data: AgentInfoManifestData, input: {
readonly mode: AgentInfoResponse["mode"];
readonly gatewayCredentials: GatewayCredentialPresence;
readonly chatgptAuth?: ChatGptAuthState;
}): AgentInfoResponse;