CHANGELOG.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
pytest.ini
llm_parser/__init__.py
tests/README.md
tests/__init__.py
tests/conftest.py
tests/api/__init__.py
tests/api/conftest.py
tests/api/test_deps.py
tests/api/test_error_mapping.py
tests/api/test_generate_route.py
tests/api/test_health.py
tests/api/test_models.py
tests/api/test_parse_route.py
tests/api/test_providers_route.py
tests/api/test_spa.py
tests/e2e/scenarios/test_real_world_scenarios.py
tests/fixtures/__init__.py
tests/fixtures/test_data.py
tests/integration/test_strict_validation_ui.py
tests/integration/test_ui_error_handling.py
tests/integration/providers/test_llm_parser_integration.py
tests/newengine/__init__.py
tests/newengine/fakes.py
tests/newengine/test_client.py
tests/newengine/test_compat_shim.py
tests/newengine/test_config.py
tests/newengine/test_dict_adapter.py
tests/newengine/test_errors.py
tests/newengine/test_import_alias.py
tests/newengine/test_json_string_adapter.py
tests/newengine/test_native_strategy.py
tests/newengine/test_openai_compatible.py
tests/newengine/test_packaging.py
tests/newengine/test_pipeline.py
tests/newengine/test_pipeline_base.py
tests/newengine/test_pipeline_properties.py
tests/newengine/test_prompt_repair_strategy.py
tests/newengine/test_provider_base.py
tests/newengine/test_provider_registry.py
tests/newengine/test_pydantic_adapter.py
tests/newengine/test_render.py
tests/newengine/test_result.py
tests/newengine/test_review_fixes.py
tests/newengine/test_schema_registry.py
tests/newengine/test_smoke_public_api.py
tests/newengine/test_stages_parsing.py
tests/newengine/test_stages_validation.py
tests/newengine/test_strategy_resolver.py
tests/newengine/test_tool_calling_strategy.py
tests/newengine/test_transport.py
tests/unit/core/test_formatter.py
tests/unit/core/test_json_schema_validation.py
tests/unit/core/test_model_parser.py
tests/unit/core/test_strict_format.py
tests/unit/core/test_strict_validation.py
tests/unit/llms/test_providers.py
tests/utils/__init__.py
tests/utils/test_helpers.py
wassitai/__init__.py
wassitai/_version.py
wassitai/client.py
wassitai/config.py
wassitai/errors.py
wassitai/llm_parser.py
wassitai/render.py
wassitai/result.py
wassitai.egg-info/PKG-INFO
wassitai.egg-info/SOURCES.txt
wassitai.egg-info/dependency_links.txt
wassitai.egg-info/requires.txt
wassitai.egg-info/top_level.txt
wassitai/api/__init__.py
wassitai/api/app.py
wassitai/api/deps.py
wassitai/api/errors.py
wassitai/api/models.py
wassitai/api/routes.py
wassitai/api/static/app.js
wassitai/api/static/favicon.svg
wassitai/api/static/guide.html
wassitai/api/static/help.js
wassitai/api/static/index.html
wassitai/api/static/styles.css
wassitai/api/static/theme.js
wassitai/api/static/vendor/alpine.min.js
wassitai/api/static/vendor/fonts.css
wassitai/api/static/vendor/fonts/instrument-serif-italic-400.woff2
wassitai/api/static/vendor/fonts/instrument-serif-normal-400.woff2
wassitai/api/static/vendor/fonts/inter-normal-400.woff2
wassitai/api/static/vendor/fonts/jetbrains-mono-normal-400.woff2
wassitai/core/formatter.py
wassitai/core/formatter_utils.py
wassitai/core/model_parser.py
wassitai/core/model_validator.py
wassitai/core/payload_validator.py
wassitai/core/prompt_builder.py
wassitai/llms/__init__.py
wassitai/llms/base.py
wassitai/llms/const.py
wassitai/llms/providers/deepseek_provider.py
wassitai/llms/providers/gemini_provider.py
wassitai/llms/providers/groq_provider.py
wassitai/llms/providers/huggingface_provider.py
wassitai/llms/providers/openai_provider.py
wassitai/llms/providers/openrouter_provider.py
wassitai/pipeline/__init__.py
wassitai/pipeline/base.py
wassitai/pipeline/context.py
wassitai/pipeline/stages/__init__.py
wassitai/pipeline/stages/coerce.py
wassitai/pipeline/stages/deserialize.py
wassitai/pipeline/stages/extract.py
wassitai/pipeline/stages/normalize.py
wassitai/pipeline/stages/syntax_repair.py
wassitai/pipeline/stages/validate.py
wassitai/providers/__init__.py
wassitai/providers/base.py
wassitai/providers/openai_compatible.py
wassitai/providers/transport.py
wassitai/schema/__init__.py
wassitai/schema/base.py
wassitai/schema/dict_adapter.py
wassitai/schema/json_string_adapter.py
wassitai/schema/pydantic_adapter.py
wassitai/schema/spec.py
wassitai/strategies/__init__.py
wassitai/strategies/base.py
wassitai/strategies/native.py
wassitai/strategies/prompt_repair.py
wassitai/strategies/tool_calling.py