You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <p>To activate trace enablement, turn <code>enableTrace</code> to <code>true</code>. Trace enablement helps you follow the agent's reasoning process that led it to the information it processed, the actions it took, and the final result it yielded. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/agents-test.html#trace-events">Trace enablement</a>.</p>
45
45
* </li>
46
46
* <li>
47
-
* <p>To stream agent responses, make sure that only orchestration prompt is enabled. Agent streaming is not supported for the following steps:
48
-
* </p>
49
-
* <ul>
50
-
* <li>
51
-
* <p>
52
-
* <code>Pre-processing</code>
53
-
* </p>
54
-
* </li>
55
-
* <li>
56
-
* <p>
57
-
* <code>Post-processing</code>
58
-
* </p>
59
-
* </li>
60
-
* <li>
61
-
* <p>Agent with 1 Knowledge base and <code>User Input</code> not enabled</p>
62
-
* </li>
63
-
* </ul>
64
-
* </li>
65
-
* <li>
66
47
* <p>End a conversation by setting <code>endSession</code> to <code>true</code>.</p>
* <p>Contains information about an action (operation) called by a node in an Amazon Bedrock flow. The service generates action events for calls made by prompt nodes,
1779
+
* agent nodes, and Amazon Web Services Lambda nodes. </p>
1780
+
* @public
1781
+
*/
1782
+
exportinterfaceFlowTraceNodeActionEvent{
1783
+
/**
1784
+
* <p>The name of the node that called the operation.</p>
1785
+
* @public
1786
+
*/
1787
+
nodeName: string|undefined;
1788
+
1789
+
/**
1790
+
* <p>The date and time that the operation was called.</p>
1791
+
* @public
1792
+
*/
1793
+
timestamp: Date|undefined;
1794
+
1795
+
/**
1796
+
* <p>The ID of the request that the node made to the operation.</p>
1797
+
* @public
1798
+
*/
1799
+
requestId: string|undefined;
1800
+
1801
+
/**
1802
+
* <p>The name of the service that the node called.</p>
1803
+
* @public
1804
+
*/
1805
+
serviceName: string|undefined;
1806
+
1807
+
/**
1808
+
* <p>The name of the operation that the node called.</p>
1809
+
* @public
1810
+
*/
1811
+
operationName: string|undefined;
1812
+
}
1813
+
1777
1814
/**
1778
1815
* <p>Contains the content of the node input. For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/flows-trace.html">Track each step in your prompt flow by viewing its trace in Amazon Bedrock</a>.</p>
* <p>Contains information about an action (operation) called by a node.
2031
+
* For more information, see <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/flows-trace.html">Track each step in your prompt flow by viewing its trace in Amazon Bedrock</a>.</p>
0 commit comments