AAI SDK
    Preparing search index...

    Variable HostConfigSchemaConst

    HostConfigSchema: z.ZodObject<
        {
            greeting: z.ZodOptional<z.ZodString>;
            sttPrompt: z.ZodOptional<z.ZodString>;
            systemPrompt: z.ZodString;
            tools: z.ZodArray<
                z.ZodObject<
                    {
                        description: z.ZodString;
                        name: z.ZodString;
                        parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
                        type: z.ZodLiteral<"function">;
                    },
                    z.core.$strip,
                >,
            >;
        },
        z.core.$strip,
    >

    Host-provided agent configuration for a host-mode connection: the caller (e.g. an external evaluation harness) supplies the system prompt, optional greeting, and tool schemas for a single session instead of using a deployed agent.

    Validated standalone rather than as a ClientMessageSchema member — the host-mode handshake consumes this message before wireSessionSocket attaches, so it must never reach dispatchMessage/ClientMessageSchema.