summaryrefslogtreecommitdiff
path: root/agent
diff options
context:
space:
mode:
Diffstat (limited to 'agent')
-rw-r--r--agent/request.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/agent/request.go b/agent/request.go
index 754f16e..095dc8e 100644
--- a/agent/request.go
+++ b/agent/request.go
@@ -30,13 +30,13 @@ func detectAPI(api string) (isCompletion, isChat, isDeepSeek, isOpenRouter bool)
}
type AgentClient struct {
- cfg *config.Config
- getToken func() string
- log *slog.Logger
- chatBody *models.ChatBody
- sysprompt string
- lastToolCallID string
- tools []models.Tool
+ cfg *config.Config
+ getToken func() string
+ log *slog.Logger
+ chatBody *models.ChatBody
+ sysprompt string
+ // lastToolCallID string
+ tools []models.Tool
}
func NewAgentClient(cfg *config.Config, log *slog.Logger, gt func() string) *AgentClient {