full-greenF

tool calling not completing sentence

calling the tools work, but it doesnt complete the sentence

following the repos on github it returns
{
            "type": "request-complete",
            "content": "The weather in location is"
          },
but it doesnt end up doing anything after that
I am returning a valid weather info as
 return res.status(200).json({
      results: [
        {
          toolCallId: toolCallId,
          result: weather.description
        }
      ]

    });
Screenshot_2024-07-12_at_10.58.32_AM.png
Was this page helpful?