server: only parse tool calls if tools are provided (#5771)
* server: only parse tool calls if tools are provided * still set `resp.Message.Content`
This commit is contained in:
parent
b255445557
commit
319fb1ce03
1 changed files with 6 additions and 3 deletions
|
@ -1385,9 +1385,12 @@ func (s *Server) ChatHandler(c *gin.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
resp.Message.Content = sb.String()
|
resp.Message.Content = sb.String()
|
||||||
if toolCalls, ok := m.parseToolCalls(sb.String()); ok {
|
|
||||||
resp.Message.ToolCalls = toolCalls
|
if len(req.Tools) > 0 {
|
||||||
resp.Message.Content = ""
|
if toolCalls, ok := m.parseToolCalls(sb.String()); ok {
|
||||||
|
resp.Message.ToolCalls = toolCalls
|
||||||
|
resp.Message.Content = ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
c.JSON(http.StatusOK, resp)
|
c.JSON(http.StatusOK, resp)
|
||||||
|
|
Loading…
Reference in a new issue