From 727b573a205e98153d0554875b647b94a3bd7df4 Mon Sep 17 00:00:00 2001 From: mrchatam Date: Fri, 11 Sep 2026 23:14:12 +0000 Subject: [PATCH] docs: fix 'allows to' grammar in ADR 0053 --- docs/decisions/0053-dotnet-structured-outputs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/decisions/0053-dotnet-structured-outputs.md b/docs/decisions/0053-dotnet-structured-outputs.md index 1b028ff58796..0043296ed319 100644 --- a/docs/decisions/0053-dotnet-structured-outputs.md +++ b/docs/decisions/0053-dotnet-structured-outputs.md @@ -10,7 +10,7 @@ deciders: sergeymenshykh, markwallace, rbarreto, westey-m, dmytrostruk, ben.thom ## Context and Problem Statement -[Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs) is a feature in OpenAI API that ensures the model will always generate responses based on provided JSON Schema. This gives more control over model responses, allows to avoid model hallucinations and write simpler prompts without a need to be specific about response format. This ADR describes several options how to enable this functionality in .NET version of Semantic Kernel. +[Structured Outputs](https://platform.openai.com/docs/guides/structured-outputs) is a feature in OpenAI API that ensures the model will always generate responses based on provided JSON Schema. This gives more control over model responses, allows you to avoid model hallucinations and write simpler prompts without a need to be specific about response format. This ADR describes several options how to enable this functionality in .NET version of Semantic Kernel. A couple of examples how it's implemented in .NET and Python OpenAI SDKs: