Table of Contents

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

ToolName string

The wire name of the intercepted tool.

ToolUseId string

The tool-use id in the conversation.

Input JsonElement

The exact input the tool would have received.

Properties

Input

The exact input the tool would have received.

public JsonElement Input { get; init; }

Property Value

JsonElement

ToolName

The wire name of the intercepted tool.

public string ToolName { get; init; }

Property Value

string

ToolUseId

The tool-use id in the conversation.

public string ToolUseId { get; init; }

Property Value

string