mimiq
    Preparing search index...

    Interface Turn

    interface Turn {
        agent_name?: string;
        content: string;
        role: "user" | "agent";
        timestamp?: string;
        tool_calls: ToolCall[];
    }
    Index

    Properties

    agent_name?: string
    content: string
    role: "user" | "agent"
    timestamp?: string
    tool_calls: ToolCall[]