Last active
January 6, 2026 19:34
-
-
Save igidio/a2d52f9914f869a0fcada7e7545773fc to your computer and use it in GitHub Desktop.
n8n + LM Studio: structured output (Ejemplo)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "courseName": { | |
| "type": "string" | |
| }, | |
| "instructor": { | |
| "type": "string" | |
| }, | |
| "devtallesUrl": { | |
| "type": "string" | |
| }, | |
| "udemyUrl": { | |
| "type": "string" | |
| }, | |
| "description": { | |
| "type": "string" | |
| }, | |
| "category": { | |
| "type": "string" | |
| }, | |
| "additionalInformation": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "courseName", | |
| "instructor", | |
| "devtallesUrl", | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment