resultJson property

  1. @TagNumber.new(3)
String get resultJson

JSON-encoded tool execution result.

The C++ tool-prompt formatter (sdk/runanywhere-commons/src/features/llm/tool_calling.cpp:1870-1885) reads result_json directly when building follow-up LLM prompts after tool execution. It is the canonical wire shape.

Implementation

@$pb.TagNumber(3)
$core.String get resultJson => $_getSZ(2);
  1. @TagNumber.new(3)
set resultJson (String value)

Implementation

@$pb.TagNumber(3)
set resultJson($core.String value) => $_setString(2, value);