From fb32901fa634de40f763949949719e091f9d5437 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Sat, 3 Jan 2026 21:56:56 +0800 Subject: [PATCH] feat: leak SVM req --- agent.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agent.go b/agent.go index f269dc1..819b7aa 100644 --- a/agent.go +++ b/agent.go @@ -266,6 +266,7 @@ func (ag *Agent) GetAction(api deepinfra.API, p model.Protocol, grp int64, role }) continue } + logrus.Debugln("[goba] GetAction add memory:", txt, "to grp:", grp) err = ag.AddMemory(grp, txt) s := "ok" msg := "" @@ -274,11 +275,11 @@ func (ag *Agent) GetAction(api deepinfra.API, p model.Protocol, grp int64, role s = "error" msg = err.Error() } + logrus.Debugln("[goba] GetAction add memory response:", s, "msg:", msg) ag.AddResponse(grp, &APIResponse{ Status: s, Message: msg, }) - continue } } reqs = append(reqs, r)