remove rebase debug

This commit is contained in:
ParthSareen 2025-05-15 14:57:42 -07:00
parent 717fa7a44a
commit 2ab70e82d0
1 changed files with 2 additions and 2 deletions

View File

@ -1483,8 +1483,6 @@ func (s *Server) ChatHandler(c *gin.Context) {
return
}
slog.Debug("chat request", "images", len(images), "prompt", prompt)
var toolParser tools.Parser
if len(req.Tools) > 0 {
toolParser, err = tools.NewParser(m.Template.Template)
@ -1539,6 +1537,8 @@ func (s *Server) ChatHandler(c *gin.Context) {
}
} else if errors.Is(err, tools.ErrAccumulateMore) {
return
} else {
slog.Debug("tools: error", "error", err)
}
}
ch <- res