Skip to content

Commit 6ed24c5

Browse files
committed
Fixed some code formatting in the Structured Output section of README
1 parent 3d7d89d commit 6ed24c5

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -320,19 +320,19 @@ ChatCompletionOptions options = new()
320320
{
321321
"type": "object",
322322
"properties": {
323-
"steps": {
324-
"type": "array",
325-
"items": {
326-
"type": "object",
327-
"properties": {
328-
"explanation": { "type": "string" },
329-
"output": { "type": "string" }
323+
"steps": {
324+
"type": "array",
325+
"items": {
326+
"type": "object",
327+
"properties": {
328+
"explanation": { "type": "string" },
329+
"output": { "type": "string" }
330+
},
331+
"required": ["explanation", "output"],
332+
"additionalProperties": false
333+
}
330334
},
331-
"required": ["explanation", "output"],
332-
"additionalProperties": false
333-
}
334-
},
335-
"final_answer": { "type": "string" }
335+
"final_answer": { "type": "string" }
336336
},
337337
"required": ["steps", "final_answer"],
338338
"additionalProperties": false

0 commit comments

Comments
 (0)