nexus-agents - v2.80.0
    Preparing search index...

    Interface AgenticToolResult

    Result of a tool call, returned by the harness's onToolCall.

    content is whatever string representation of the result the model should see next turn. Convention: stringify objects, prefer one-line for primitives. isError tells the model the call failed (Anthropic surfaces this as is_error: true in the next turn's tool_result block; other providers handle similarly).

    interface AgenticToolResult {
        content: string;
        isError?: boolean;
    }
    Index

    Properties

    Properties

    content: string
    isError?: boolean