Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created September 21, 2024 12:27
Show Gist options
  • Save wullemsb/34b49ab398fb4e4fafccc6401b4fbd4d to your computer and use it in GitHub Desktop.
Save wullemsb/34b49ab398fb4e4fafccc6401b4fbd4d to your computer and use it in GitHub Desktop.
//Check the latest message to see if a tool was called
foreach (var toolCall in chat.Messages.Last().ToolCalls)
{
if (toolCall.Function.Name == nameof(GetWeather))
Console.WriteLine(GetWeather(toolCall.Function.Arguments["location"], toolCall.Function.Arguments["format"]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment