You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The JsonSchema generator introduced in #150 is really useful. However, it provides an incorrect output for pretty basic cases:
publicclassDialog{publicDialogLine[]DialogLines{get;set;}=[];// The LLM generates any object, ignoring the DialogLine schema.}publicclassDialogLine{publicstringName{get;set;}publicstringSpeech{get;set;}}
The JsonSchema generator introduced in #150 is really useful. However, it provides an incorrect output for pretty basic cases:
Consider looking into https://github.com/tryAGI/CSharpToJsonSchema, which successfully converts the above to a schema.
The text was updated successfully, but these errors were encountered: