AAI SDK
    Preparing search index...

    Type Alias AgentConfigSource

    AgentConfigSource: Omit<AgentConfig, "mode"> & {
        [K in HostOnlyAgentField]?: unknown
    }

    What toAgentConfig accepts: every serializable AgentConfig field (mode excepted — it is derived, never supplied) plus the host-only fields the deny-list strips. AgentDef is assignable to this by construction; the explicit | undefined on the host-only members keeps spread call sites ({...agent, stt: maybeUndefined}) legal under exactOptionalPropertyTypes.