mirror of
https://github.com/ollama/ollama.git
synced 2025-03-29 11:11:47 +01:00
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
@ -1385,9 +1385,12 @@ func (s *Server) ChatHandler(c *gin.Context) {
|
||||
}
|
||||
|
||||
resp.Message.Content = sb.String()
|
||||
if toolCalls, ok := m.parseToolCalls(sb.String()); ok {
|
||||
resp.Message.ToolCalls = toolCalls
|
||||
resp.Message.Content = ""
|
||||
|
||||
if len(req.Tools) > 0 {
|
||||
if toolCalls, ok := m.parseToolCalls(sb.String()); ok {
|
||||
resp.Message.ToolCalls = toolCalls
|
||||
resp.Message.Content = ""
|
||||
}
|
||||
}
|
||||
|
||||
c.JSON(http.StatusOK, resp)
|
||||
|
Loading…
x
Reference in New Issue
Block a user