import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The agent metadata. Currently not implemented. */ export type AgentMetadata = {}; /** * Describes features that the agent supports. example: { * * @remarks * "ap.io.messages": true, * "ap.io.streaming": true * } */ export type AgentCapabilities = { /** * Whether the agent supports messages as an input. If true, you'll pass `messages` as an input when running the agent. */ apIoMessages?: boolean | undefined; /** * Whether the agent supports streaming output. If true, you you can stream agent ouput. All agents currently support streaming. */ apIoStreaming?: boolean | undefined; additionalProperties?: { [k: string]: any; } | undefined; }; export type Agent = { /** * The ID of the agent. */ agentId: string; /** * The name of the agent */ name: string; /** * The description of the agent. */ description?: string | undefined; /** * The agent metadata. Currently not implemented. */ metadata?: AgentMetadata | undefined; /** * Describes features that the agent supports. example: { * * @remarks * "ap.io.messages": true, * "ap.io.streaming": true * } */ capabilities: AgentCapabilities; }; /** @internal */ export declare const AgentMetadata$inboundSchema: z.ZodType; export declare function agentMetadataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AgentCapabilities$inboundSchema: z.ZodType; export declare function agentCapabilitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Agent$inboundSchema: z.ZodType; export declare function agentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=agent.d.ts.map