Update go-llm module version in go.mod and go.sum

This commit is contained in:
2025-05-03 05:36:37 -04:00
parent 82580a5a7a
commit 24f248d900
5 changed files with 54 additions and 82 deletions

View File

@@ -12,7 +12,7 @@ import (
type KnowledgeWorker struct {
Model gollm.ChatCompletion
ToolBox *gollm.ToolBox
ToolBox gollm.ToolBox
ContextualInformation []string
OnNewFunction func(ctx context.Context, funcName string, args string) (any, error)
OnFunctionFinished func(ctx context.Context, funcName string, args string, result any, err error, newFunctionResult any) error