Agent Armor API Reference
    Preparing search index...

    Interface ConversationTurn

    A single message in a multi-turn conversation passed to scanSession.

    interface ConversationTurn {
        content: string;
        role: "user" | "assistant" | "tool" | "document" | "system";
    }
    Index
    content: string

    The turn's text content.

    role: "user" | "assistant" | "tool" | "document" | "system"

    Who/what produced this turn.