import type * as core from "../../../../../core"; /** * @example * { * agentId: "agent_id" * } */ export interface BodyAddToKnowledgeBaseV1ConvaiKnowledgeBasePost { agentId?: string; /** A custom, human-readable name for the document. */ name?: string; /** URL to a page of documentation that the agent will have access to in order to interact with users. */ url?: string; /** Documentation that the agent will have access to in order to interact with users. */ file?: core.file.Uploadable | undefined; }