Update M.E.AI and MCP versions (#992)

But not yet M.E.AI.OpenAI, which depends on the latest OpenAI, which conflicts with the latest Azure.AI.OpenAI.
This commit is contained in:
Stephen Toub
2025-09-30 07:17:59 +00:00
committed by GitHub
parent b8df0cd03f
commit fc4fce7973
13 changed files with 25 additions and 786 deletions
@@ -107,7 +107,7 @@ public static class Program
{
ChatOptions = new()
{
ResponseFormat = ChatResponseFormat.ForJsonSchema(AIJsonUtilities.CreateJsonSchema(typeof(DetectionResult)))
ResponseFormat = ChatResponseFormat.ForJsonSchema<DetectionResult>()
}
});
@@ -120,7 +120,7 @@ public static class Program
{
ChatOptions = new()
{
ResponseFormat = ChatResponseFormat.ForJsonSchema(AIJsonUtilities.CreateJsonSchema(typeof(EmailResponse)))
ResponseFormat = ChatResponseFormat.ForJsonSchema<EmailResponse>()
}
});
}