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
* This file was auto-generated by Fern from our API Definition.
3
+
*/
4
+
5
+
import*asHumanloopfrom"../../../../index";
6
+
7
+
/**
8
+
* @example
9
+
* {
10
+
* logId: "log_id",
11
+
* messages: [{
12
+
* role: "user"
13
+
* }]
14
+
* }
15
+
*/
16
+
exportinterfaceAgentsContinueCallRequest{
17
+
/** This identifies the Agent Log to continue. */
18
+
logId: string;
19
+
/** The additional messages with which to continue the Agent Log. Often, these should start with the Tool messages with results for the previous Assistant message's tool calls. */
20
+
messages: Humanloop.ChatMessage[];
21
+
/** API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization. */
22
+
providerApiKeys?: Humanloop.ProviderApiKeys;
23
+
/** If true, populate `trace_children` for the returned Agent Log. Defaults to false. */
* This file was auto-generated by Fern from our API Definition.
3
+
*/
4
+
5
+
import*asHumanloopfrom"../../../../index";
6
+
7
+
/**
8
+
* @example
9
+
* {
10
+
* logId: "log_id",
11
+
* messages: [{
12
+
* role: "user"
13
+
* }]
14
+
* }
15
+
*/
16
+
exportinterfaceAgentsContinueStreamRequest{
17
+
/** This identifies the Agent Log to continue. */
18
+
logId: string;
19
+
/** The additional messages with which to continue the Agent Log. Often, these should start with the Tool messages with results for the previous Assistant message's tool calls. */
20
+
messages: Humanloop.ChatMessage[];
21
+
/** API keys required by each provider to make API calls. The API keys provided here are not stored by Humanloop. If not specified here, Humanloop will fall back to the key saved to your organization. */
22
+
providerApiKeys?: Humanloop.ProviderApiKeys;
23
+
/** If true, populate `trace_children` for the returned Agent Log. Defaults to false. */
0 commit comments