mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-31 23:58:50 +01:00
refactor: Update Agents.ToolCallDelta type
This commit is contained in:
parent
e478e10c96
commit
345748a6ab
1 changed files with 2 additions and 2 deletions
|
|
@ -180,8 +180,8 @@ export namespace Agents {
|
|||
tool_calls: AgentToolCall[];
|
||||
};
|
||||
export type ToolCallDelta = {
|
||||
type: StepTypes.TOOL_CALLS;
|
||||
tool_calls: ToolCallChunk[];
|
||||
type: StepTypes.TOOL_CALLS | string;
|
||||
tool_calls?: ToolCallChunk[];
|
||||
};
|
||||
export type AgentToolCall = FunctionToolCall | ToolCall;
|
||||
export interface ExtendedMessageContent {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue