Replies: 2 comments
-
Nice idea, thanks! Same for objects I think, like |
Beta Was this translation helpful? Give feedback.
0 replies
-
Implemented now in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
not sure if this is something you want to include in this library but in my LLM testing, i saw multiple instances of LLMs generating arrays with ellipsis, e.g.:
["123", "456", ...]
This obviously fails to parse to JSON. Solution could be to just remove the ...:
["123", "456", ...]
->["123", "456"]
What do you think @josdejong ?
Beta Was this translation helpful? Give feedback.
All reactions