Skip to content

Commit

Permalink
force sequential
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed Sep 10, 2024
1 parent e5cc9cb commit 44eaeff
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkg/invoke/invoker.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,11 @@ func (i *Invoker) createRun(ctx context.Context, thread *v1.Thread, tools []gpts
"OTTO_WORKFLOW_STEP_ID="+opts.WorkflowStepName,
"OTTO_AGENT_ID="+opts.AgentName),
},
Input: input,
Workspace: workspace.GetDir(thread.Spec.WorkspaceID),
ChatState: chatState,
IncludeEvents: true,
Input: input,
Workspace: workspace.GetDir(thread.Spec.WorkspaceID),
ChatState: chatState,
IncludeEvents: true,
ForceSequential: true,
}, tools...)
if err != nil {
return nil, err
Expand Down

0 comments on commit 44eaeff

Please sign in to comment.