From 411df5888fd3450f7df674da6f55213a0d345397 Mon Sep 17 00:00:00 2001 From: Bill Maxwell Date: Thu, 22 Feb 2024 16:37:06 -0700 Subject: [PATCH] fix - typo in error message Signed-off-by: Bill Maxwell --- pkg/engine/engine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/engine/engine.go b/pkg/engine/engine.go index 5cdbf3e8..512a9c47 100644 --- a/pkg/engine/engine.go +++ b/pkg/engine/engine.go @@ -323,7 +323,7 @@ func (e *Engine) Continue(ctx context.Context, state *State, results ...CallResu pending, ok := state.Pending[content.ToolCall.ID] if !ok { - return nil, fmt.Errorf("missing tool call pennding for id %s, most likely a %s BUG", + return nil, fmt.Errorf("missing tool call pending for id %s, most likely a %s BUG", content.ToolCall.ID, version.ProgramName) }