-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgentsContinueRequest.ts
More file actions
25 lines (23 loc) · 992 Bytes
/
AgentsContinueRequest.ts
File metadata and controls
25 lines (23 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Humanloop from "../../../../index";
/**
* @example
* {
* logId: "log_id",
* messages: [{
* role: "user"
* }]
* }
*/
export interface AgentsContinueCallRequest {
/** This identifies the Agent Log to continue. */
logId: string;
/** 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. */
messages: Humanloop.ChatMessage[];
/** 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. */
providerApiKeys?: Humanloop.ProviderApiKeys;
/** If true, populate `trace_children` for the returned Agent Log. Defaults to false. */
includeTraceChildren?: boolean;
}