gitextract_52ww4tbd/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── CI.yml │ └── python-publish.yml ├── .gitignore ├── .gitmodules ├── Doxyfile ├── LICENSE ├── README.md ├── benchmarks/ │ ├── address.json │ ├── exllamav2_json.py │ ├── exllamav2_json.txt │ ├── linkedlist.json │ ├── orders.json │ ├── readme.md │ ├── transformers_json.py │ ├── transformers_json.txt │ ├── utils.py │ ├── vllm_json.py │ └── vllm_json_bench.txt ├── dev-dependencies.txt ├── docs/ │ ├── dev/ │ │ └── placeholder │ ├── header_gen.py │ ├── header_gen.sh │ └── index_gen.py ├── examples/ │ └── test_readme_examples.py ├── py_filter.bat ├── py_filter.sh ├── pyproject.toml ├── src/ │ └── formatron/ │ ├── __init__.py │ ├── config.py │ ├── extractor.py │ ├── formats/ │ │ ├── __init__.py │ │ ├── json.py │ │ ├── regex.py │ │ └── utils.py │ ├── formatter.py │ ├── integrations/ │ │ ├── RWKV.py │ │ ├── __init__.py │ │ ├── exllamav2.py │ │ ├── transformers.py │ │ ├── utils.py │ │ └── vllm.py │ └── schemas/ │ ├── __init__.py │ ├── dict_inference.py │ ├── json_schema.py │ ├── pydantic.py │ └── schema.py ├── test-dependencies.txt └── tests/ ├── assets/ │ ├── RWKV-5-World-0.4B-v2-20231113-ctx4096.pth │ └── rwkv_vocab_v20230424.txt ├── scratch.py ├── snapshots/ │ ├── __init__.py │ ├── snap_test_exllamav2_integration.py │ ├── snap_test_formatter.py │ ├── snap_test_grammar_gen.py │ ├── snap_test_rwkv_integration.py │ ├── snap_test_transformers_integration.py │ └── snap_test_vllm_integration.py ├── test_exllamav2_integration.py ├── test_formatter.py ├── test_grammar_gen.py ├── test_rwkv_integration.py ├── test_transformers_integration.py └── test_vllm_integration.py