├── .gitignore ├── LICENSE ├── README.md ├── examples ├── example.py └── example_interactive.py ├── parserllm ├── __init__.py └── parserllm.py ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/examples/example_interactive.py -------------------------------------------------------------------------------- /parserllm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/parserllm/__init__.py -------------------------------------------------------------------------------- /parserllm/parserllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/parserllm/parserllm.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r2d4/parserllm/HEAD/pyproject.toml --------------------------------------------------------------------------------