Enha: agent client redo [WIP]

This commit is contained in:
Grail Finder
2026-03-09 07:50:11 +03:00
parent 0e42a6f069
commit 94769225cf
3 changed files with 97 additions and 54 deletions

View File

@@ -4,11 +4,12 @@ package agent
// ones who do their own tools calls
// ones that works only with the output
// A: main chat -> agent (handles everything: tool + processing)
// A: main chat -> agent (handles everything: tool + processing), supports tool chaining
// B: main chat -> tool -> agent (process tool output)
// AgenterA gets a task "find out weather in london"
// proceeds to make tool calls on its own
// AgenterA gets a task like "go to the webpage, login and take a screenshot (tell me what you see)"
// proceeds to make a plan and executes it.
// returns with final result or an error
type AgenterA interface {
ProcessTask(task string) []byte
}