Class PlannedEffect
- Namespace
- Emissary
- Assembly
- Emissary.dll
One privileged tool call intercepted by Shadow: what the agent would have done. Review the plan, then re-run live to commit.
public sealed record PlannedEffect : IEquatable<PlannedEffect>
- Inheritance
-
PlannedEffect
- Implements
- Inherited Members
Constructors
PlannedEffect(string, string, JsonElement)
One privileged tool call intercepted by Shadow: what the agent would have done. Review the plan, then re-run live to commit.
public PlannedEffect(string ToolName, string ToolUseId, JsonElement Input)
Parameters
ToolNamestringThe wire name of the intercepted tool.
ToolUseIdstringThe tool-use id in the conversation.
InputJsonElementThe exact input the tool would have received.
Properties
Input
The exact input the tool would have received.
public JsonElement Input { get; init; }
Property Value
ToolName
The wire name of the intercepted tool.
public string ToolName { get; init; }
Property Value
ToolUseId
The tool-use id in the conversation.
public string ToolUseId { get; init; }