Mayson Monorepo Documentation
    Preparing search index...

    Interface ToolExecution

    Tool execution stored in chat messages MongoDB will auto-generate _id for each subdocument

    interface ToolExecution {
        _id?: string;
        tool: string;
        description: string;
        status: ToolExecutionStatus;
        resultSummary?: string;
        error?: string;
        download?: ToolResultDownload;
    }
    Index

    Properties

    _id?: string

    MongoDB ObjectId (auto-generated)

    tool: string

    Tool name

    description: string

    Human-readable description

    Final status

    resultSummary?: string

    Result summary

    error?: string

    Error message if failed

    Downloadable file information