Creating Plot Twists
    Preparing search index...

    Type Alias AutoThreadMode

    AutoThreadMode: "sequential" | "fold"

    How the runtime groups a connector's messages into threads when auto-threading is enabled for the connection.

    • "sequential": a chat channel. Each message either continues the previous message's conversation (folds in as a note) or starts a new thread, decided by a high-confidence continuation check. Use for multi-participant channels where consecutive top-level messages often form one conversation.
    • "fold": a DM / one-to-one surface. Every message folds into a single running thread for that AutoThreadConfig.key (no per-message judgment). Use for direct messages, which read naturally as one continuous conversation.