-
Notifications
You must be signed in to change notification settings - Fork 10.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON schema conversion: ⚡️ faster repetitions, min/maxLength for strings, cap number length #6555
Merged
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
2148f24
json: rename python schema converter to make import easier
ochafik f771a8f
server: skip null json_schema / grammar fields
ochafik 159b883
json: deps management for primitive rules (+ allow null values)
ochafik a59e943
json: optimize repetitions for minItems/maxItems and regexps: `a{,3}`…
ochafik 07163fb
grammars: add troubleshooting section to readme
ochafik dcf5d32
json: cap length of numbers to 15 digits before/after decimal point
ochafik 181f984
json: unify all repetition code (w/ or w/o sep)
ochafik de4e60e
json: support string minLength/maxLength
ochafik 6c885dc
server+json: update server/README w/ result_format
ochafik 3c81e94
nits
ochafik 67a5184
json: fix type error w/ python 3.8
ochafik 9c33ee9
json: fix server/README (json_schema in /completion vs. result_format…
ochafik ed13d47
json: simplify DOT `{"type": "string", "pattern": "^.$"}`
ochafik 958bdda
Merge remote-tracking branch 'origin/master' into json-faster-repetit…
ochafik 64e3059
json: remove recursion in opt_repetitions (avoids Python stack overflow)
ochafik ba90d5b
json: rm dead code
ochafik dfd4eb3
json: rm useless assert & ggml.h import
ochafik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
grammars: add troubleshooting section to readme
- Loading branch information
commit 07163fb627f5a43d48b9698bdeb1322279c3a379
There are no files selected for viewing
This file contains 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like this section. After this gets merged in, I'll write a section on the dangers of left-recursion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably also document the json->grammar converters here, I'll send that separately