Remove deprecated console_new package

Deleted the `console_new` package, including its agent, container, execution, and utility files. Updated dependencies and replaced references to align with the maintained code structure.
This commit is contained in:
2025-10-28 00:30:02 -04:00
parent 1c3ea7d1f1
commit 9a4ddf3fc1
8 changed files with 25 additions and 654 deletions

View File

@@ -7,6 +7,7 @@ import (
"sync/atomic"
gollm "gitea.stevedudenhoeffer.com/steve/go-llm"
"github.com/davecgh/go-spew/spew"
)
// Agent is essentially the bones of a chat agent. It has a model and a toolbox, and can be used to call the model
@@ -184,6 +185,8 @@ func (a Agent) _callAndExecuteParallel(ctx context.Context, parallel bool, msgs
req, err := a.ToRequest(msgs...)
spew.Dump(req)
if err != nil {
return CallAndExecuteResults{}, fmt.Errorf("failed to create request: %w", err)
}