From 2e47c8a1b687efb503b404a13e940de17bb68629 Mon Sep 17 00:00:00 2001 From: Eric Rakestraw Date: Sun, 10 May 2026 22:37:38 +0000 Subject: [PATCH] Move python implementation under python/ in preparation for the upcoming Go rewrite --- audita => python/audita | 0 pyproject.toml => python/pyproject.toml | 0 {src => python/src}/audita/__init__.py | 0 {src => python/src}/audita/__main__.py | 0 {src => python/src}/audita/cli.py | 0 {src => python/src}/audita/core/__init__.py | 0 {src => python/src}/audita/core/chunking.py | 0 {src => python/src}/audita/core/config.py | 0 {src => python/src}/audita/core/diagnostics.py | 0 {src => python/src}/audita/core/errors.py | 0 {src => python/src}/audita/core/io.py | 0 {src => python/src}/audita/core/normalization.py | 0 {src => python/src}/audita/core/reporting.py | 0 {src => python/src}/audita/core/schemas.py | 0 {src => python/src}/audita/framework/__init__.py | 0 {src => python/src}/audita/framework/llm.py | 0 {src => python/src}/audita/framework/llm_scheduler.py | 0 {src => python/src}/audita/framework/models.py | 0 {src => python/src}/audita/framework/proposal_generation.py | 0 {src => python/src}/audita/framework/proposals.py | 0 {src => python/src}/audita/framework/runner.py | 0 {src => python/src}/audita/modules/__init__.py | 0 {src => python/src}/audita/modules/glossary.py | 0 {src => python/src}/audita/modules/grammar.py | 0 {src => python/src}/audita/modules/homophones.py | 0 {src => python/src}/audita/modules/prompts.py | 0 {src => python/src}/audita/modules/spoken_word.py | 0 {src => python/src}/audita/pipeline.py | 0 {src => python/src}/audita/py.typed | 0 {src => python/src}/audita/validators/__init__.py | 0 {src => python/src}/audita/validators/base.py | 0 {src => python/src}/audita/validators/deterministic.py | 0 {src => python/src}/audita/validators/llm.py | 0 {src => python/src}/audita/validators/prompts.py | 0 {src => python/src}/audita/validators/protection.py | 0 {tests => python/tests}/__init__.py | 0 {tests => python/tests}/test_framework_chunking.py | 0 {tests => python/tests}/test_framework_llm.py | 0 {tests => python/tests}/test_framework_runner.py | 0 {tests => python/tests}/test_llm_validators.py | 0 {tests => python/tests}/test_module_proposals.py | 0 {tests => python/tests}/test_new_cli.py | 0 {tests => python/tests}/test_new_config.py | 0 {tests => python/tests}/test_new_launcher.py | 0 {tests => python/tests}/test_new_pipeline.py | 0 {tests => python/tests}/test_new_transcript_schema.py | 0 {tests => python/tests}/test_protected_validator.py | 0 47 files changed, 0 insertions(+), 0 deletions(-) rename audita => python/audita (100%) rename pyproject.toml => python/pyproject.toml (100%) rename {src => python/src}/audita/__init__.py (100%) rename {src => python/src}/audita/__main__.py (100%) rename {src => python/src}/audita/cli.py (100%) rename {src => python/src}/audita/core/__init__.py (100%) rename {src => python/src}/audita/core/chunking.py (100%) rename {src => python/src}/audita/core/config.py (100%) rename {src => python/src}/audita/core/diagnostics.py (100%) rename {src => python/src}/audita/core/errors.py (100%) rename {src => python/src}/audita/core/io.py (100%) rename {src => python/src}/audita/core/normalization.py (100%) rename {src => python/src}/audita/core/reporting.py (100%) rename {src => python/src}/audita/core/schemas.py (100%) rename {src => python/src}/audita/framework/__init__.py (100%) rename {src => python/src}/audita/framework/llm.py (100%) rename {src => python/src}/audita/framework/llm_scheduler.py (100%) rename {src => python/src}/audita/framework/models.py (100%) rename {src => python/src}/audita/framework/proposal_generation.py (100%) rename {src => python/src}/audita/framework/proposals.py (100%) rename {src => python/src}/audita/framework/runner.py (100%) rename {src => python/src}/audita/modules/__init__.py (100%) rename {src => python/src}/audita/modules/glossary.py (100%) rename {src => python/src}/audita/modules/grammar.py (100%) rename {src => python/src}/audita/modules/homophones.py (100%) rename {src => python/src}/audita/modules/prompts.py (100%) rename {src => python/src}/audita/modules/spoken_word.py (100%) rename {src => python/src}/audita/pipeline.py (100%) rename {src => python/src}/audita/py.typed (100%) rename {src => python/src}/audita/validators/__init__.py (100%) rename {src => python/src}/audita/validators/base.py (100%) rename {src => python/src}/audita/validators/deterministic.py (100%) rename {src => python/src}/audita/validators/llm.py (100%) rename {src => python/src}/audita/validators/prompts.py (100%) rename {src => python/src}/audita/validators/protection.py (100%) rename {tests => python/tests}/__init__.py (100%) rename {tests => python/tests}/test_framework_chunking.py (100%) rename {tests => python/tests}/test_framework_llm.py (100%) rename {tests => python/tests}/test_framework_runner.py (100%) rename {tests => python/tests}/test_llm_validators.py (100%) rename {tests => python/tests}/test_module_proposals.py (100%) rename {tests => python/tests}/test_new_cli.py (100%) rename {tests => python/tests}/test_new_config.py (100%) rename {tests => python/tests}/test_new_launcher.py (100%) rename {tests => python/tests}/test_new_pipeline.py (100%) rename {tests => python/tests}/test_new_transcript_schema.py (100%) rename {tests => python/tests}/test_protected_validator.py (100%) 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