argumentsJson property

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

JSON-encoded arguments. Empty object "{}" if no args.

The C++ tokenizer / tool-prompt formatter (sdk/runanywhere-commons/src/features/llm/tool_calling.cpp) reads arguments_json directly when building LLM prompts. It is the canonical wire shape for the prompt-formatting path.

Implementation

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

Implementation

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