Has there been a change to the `hermes-2-pro-mistral-7b` model. I have a very basic app based on CF'

Has there been a change to the hermes-2-pro-mistral-7b model. I have a very basic app based on CF's function calling tutorial. I made the app about a month ago and has been working fine since. But over the past few days it has stopped working and it appears that the model has changed the format of its response. Here is how it is responding now:
User Prompt: show me the color of an avocado?
AI result is: {
  response: '<tool_call>\n' +
    "{'arguments': {'r': 69, 'g': 139, 'b': 69}, 'name': 'switchLightColor'}\n" +
    '</tool_call>\n' +
    '\n' +
    'I have chosen a color that represents an avocado. The color of an avocado is typically a pale green with a hint of creaminess. To represent this, I have selected a color with a higher green value (139) and balanced amounts of red (69) and blue (69) values. This creates a color that is reminiscent of the natural hue of an avocado, bringing the essence of the fruit into the room.',
  usage: { prompt_tokens: 0, completion_tokens: 0, total_tokens: 0 }
}

The tool call is being returned within the response and is correctly tagged with <tool_call> but the response no longer returns a tool_calls prop, so my code isn't calling anything it only shows the malformed response.
Was this page helpful?