diff --git a/audita b/python/audita similarity index 100% rename from audita rename to python/audita diff --git a/pyproject.toml b/python/pyproject.toml similarity index 100% rename from pyproject.toml rename to python/pyproject.toml diff --git a/src/audita/__init__.py b/python/src/audita/__init__.py similarity index 100% rename from src/audita/__init__.py rename to python/src/audita/__init__.py diff --git a/src/audita/__main__.py b/python/src/audita/__main__.py similarity index 100% rename from src/audita/__main__.py rename to python/src/audita/__main__.py diff --git a/src/audita/cli.py b/python/src/audita/cli.py similarity index 100% rename from src/audita/cli.py rename to python/src/audita/cli.py diff --git a/src/audita/core/__init__.py b/python/src/audita/core/__init__.py similarity index 100% rename from src/audita/core/__init__.py rename to python/src/audita/core/__init__.py diff --git a/src/audita/core/chunking.py b/python/src/audita/core/chunking.py similarity index 100% rename from src/audita/core/chunking.py rename to python/src/audita/core/chunking.py diff --git a/src/audita/core/config.py b/python/src/audita/core/config.py similarity index 100% rename from src/audita/core/config.py rename to python/src/audita/core/config.py diff --git a/src/audita/core/diagnostics.py b/python/src/audita/core/diagnostics.py similarity index 100% rename from src/audita/core/diagnostics.py rename to python/src/audita/core/diagnostics.py diff --git a/src/audita/core/errors.py b/python/src/audita/core/errors.py similarity index 100% rename from src/audita/core/errors.py rename to python/src/audita/core/errors.py diff --git a/src/audita/core/io.py b/python/src/audita/core/io.py similarity index 100% rename from src/audita/core/io.py rename to python/src/audita/core/io.py diff --git a/src/audita/core/normalization.py b/python/src/audita/core/normalization.py similarity index 100% rename from src/audita/core/normalization.py rename to python/src/audita/core/normalization.py diff --git a/src/audita/core/reporting.py b/python/src/audita/core/reporting.py similarity index 100% rename from src/audita/core/reporting.py rename to python/src/audita/core/reporting.py diff --git a/src/audita/core/schemas.py b/python/src/audita/core/schemas.py similarity index 100% rename from src/audita/core/schemas.py rename to python/src/audita/core/schemas.py diff --git a/src/audita/framework/__init__.py b/python/src/audita/framework/__init__.py similarity index 100% rename from src/audita/framework/__init__.py rename to python/src/audita/framework/__init__.py diff --git a/src/audita/framework/llm.py b/python/src/audita/framework/llm.py similarity index 100% rename from src/audita/framework/llm.py rename to python/src/audita/framework/llm.py diff --git a/src/audita/framework/llm_scheduler.py b/python/src/audita/framework/llm_scheduler.py similarity index 100% rename from src/audita/framework/llm_scheduler.py rename to python/src/audita/framework/llm_scheduler.py diff --git a/src/audita/framework/models.py b/python/src/audita/framework/models.py similarity index 100% rename from src/audita/framework/models.py rename to python/src/audita/framework/models.py diff --git a/src/audita/framework/proposal_generation.py b/python/src/audita/framework/proposal_generation.py similarity index 100% rename from src/audita/framework/proposal_generation.py rename to python/src/audita/framework/proposal_generation.py diff --git a/src/audita/framework/proposals.py b/python/src/audita/framework/proposals.py similarity index 100% rename from src/audita/framework/proposals.py rename to python/src/audita/framework/proposals.py diff --git a/src/audita/framework/runner.py b/python/src/audita/framework/runner.py similarity index 100% rename from src/audita/framework/runner.py rename to python/src/audita/framework/runner.py diff --git a/src/audita/modules/__init__.py b/python/src/audita/modules/__init__.py similarity index 100% rename from src/audita/modules/__init__.py rename to python/src/audita/modules/__init__.py diff --git a/src/audita/modules/glossary.py b/python/src/audita/modules/glossary.py similarity index 100% rename from src/audita/modules/glossary.py rename to python/src/audita/modules/glossary.py diff --git a/src/audita/modules/grammar.py b/python/src/audita/modules/grammar.py similarity index 100% rename from src/audita/modules/grammar.py rename to python/src/audita/modules/grammar.py diff --git a/src/audita/modules/homophones.py b/python/src/audita/modules/homophones.py similarity index 100% rename from src/audita/modules/homophones.py rename to python/src/audita/modules/homophones.py diff --git a/src/audita/modules/prompts.py b/python/src/audita/modules/prompts.py similarity index 100% rename from src/audita/modules/prompts.py rename to python/src/audita/modules/prompts.py diff --git a/src/audita/modules/spoken_word.py b/python/src/audita/modules/spoken_word.py similarity index 100% rename from src/audita/modules/spoken_word.py rename to python/src/audita/modules/spoken_word.py diff --git a/src/audita/pipeline.py b/python/src/audita/pipeline.py similarity index 100% rename from src/audita/pipeline.py rename to python/src/audita/pipeline.py diff --git a/src/audita/py.typed b/python/src/audita/py.typed similarity index 100% rename from src/audita/py.typed rename to python/src/audita/py.typed diff --git a/src/audita/validators/__init__.py b/python/src/audita/validators/__init__.py similarity index 100% rename from src/audita/validators/__init__.py rename to python/src/audita/validators/__init__.py diff --git a/src/audita/validators/base.py b/python/src/audita/validators/base.py similarity index 100% rename from src/audita/validators/base.py rename to python/src/audita/validators/base.py diff --git a/src/audita/validators/deterministic.py b/python/src/audita/validators/deterministic.py similarity index 100% rename from src/audita/validators/deterministic.py rename to python/src/audita/validators/deterministic.py diff --git a/src/audita/validators/llm.py b/python/src/audita/validators/llm.py similarity index 100% rename from src/audita/validators/llm.py rename to python/src/audita/validators/llm.py diff --git a/src/audita/validators/prompts.py b/python/src/audita/validators/prompts.py similarity index 100% rename from src/audita/validators/prompts.py rename to python/src/audita/validators/prompts.py diff --git a/src/audita/validators/protection.py b/python/src/audita/validators/protection.py similarity index 100% rename from src/audita/validators/protection.py rename to python/src/audita/validators/protection.py diff --git a/tests/__init__.py b/python/tests/__init__.py similarity index 100% rename from tests/__init__.py rename to python/tests/__init__.py diff --git a/tests/test_framework_chunking.py b/python/tests/test_framework_chunking.py similarity index 100% rename from tests/test_framework_chunking.py rename to python/tests/test_framework_chunking.py diff --git a/tests/test_framework_llm.py b/python/tests/test_framework_llm.py similarity index 100% rename from tests/test_framework_llm.py rename to python/tests/test_framework_llm.py diff --git a/tests/test_framework_runner.py b/python/tests/test_framework_runner.py similarity index 100% rename from tests/test_framework_runner.py rename to python/tests/test_framework_runner.py diff --git a/tests/test_llm_validators.py b/python/tests/test_llm_validators.py similarity index 100% rename from tests/test_llm_validators.py rename to python/tests/test_llm_validators.py diff --git a/tests/test_module_proposals.py b/python/tests/test_module_proposals.py similarity index 100% rename from tests/test_module_proposals.py rename to python/tests/test_module_proposals.py diff --git a/tests/test_new_cli.py b/python/tests/test_new_cli.py similarity index 100% rename from tests/test_new_cli.py rename to python/tests/test_new_cli.py diff --git a/tests/test_new_config.py b/python/tests/test_new_config.py similarity index 100% rename from tests/test_new_config.py rename to python/tests/test_new_config.py diff --git a/tests/test_new_launcher.py b/python/tests/test_new_launcher.py similarity index 100% rename from tests/test_new_launcher.py rename to python/tests/test_new_launcher.py diff --git a/tests/test_new_pipeline.py b/python/tests/test_new_pipeline.py similarity index 100% rename from tests/test_new_pipeline.py rename to python/tests/test_new_pipeline.py diff --git a/tests/test_new_transcript_schema.py b/python/tests/test_new_transcript_schema.py similarity index 100% rename from tests/test_new_transcript_schema.py rename to python/tests/test_new_transcript_schema.py diff --git a/tests/test_protected_validator.py b/python/tests/test_protected_validator.py similarity index 100% rename from tests/test_protected_validator.py rename to python/tests/test_protected_validator.py