.flake8
.gitignore
.markdownlint.yml
.pre-commit-config.yaml
CONTRIBUTING.md
GEMINI.md
LICENSE
Makefile
README.md
USAGE.md
pyproject.toml
requirements.txt
reset_fake_project.py
.github/dependabot.yml
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/bug_report.yml
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/documentation.yml
.github/ISSUE_TEMPLATE/feature_request.yml
.github/instructions/general.instructions.md
.github/workflows/ci.yml
.github/workflows/release.yml
conda/meta.yaml
docs/initial.md
docs/v2/README.md
docs/v2/architecture.md
docs/v2/github-issue-v2.md
docs/v2/implementation-plan.md
src/AIUnitTest.egg-info/PKG-INFO
src/AIUnitTest.egg-info/SOURCES.txt
src/AIUnitTest.egg-info/dependency_links.txt
src/AIUnitTest.egg-info/entry_points.txt
src/AIUnitTest.egg-info/requires.txt
src/AIUnitTest.egg-info/top_level.txt
src/ai_unit_test/__init__.py
src/ai_unit_test/__main__.py
src/ai_unit_test/_version.py
src/ai_unit_test/cli.py
src/ai_unit_test/coverage_helper.py
src/ai_unit_test/file_helper.py
src/ai_unit_test/main.py
src/ai_unit_test/py.typed
src/ai_unit_test/core/__init__.py
src/ai_unit_test/core/cli_manager.py
src/ai_unit_test/core/exceptions.py
src/ai_unit_test/core/system_orchestrator.py
src/ai_unit_test/core/factories/__init__.py
src/ai_unit_test/core/factories/index_factory.py
src/ai_unit_test/core/factories/llm_factory.py
src/ai_unit_test/core/implementations/__init__.py
src/ai_unit_test/core/implementations/indexing/__init__.py
src/ai_unit_test/core/implementations/indexing/faiss_organizer.py
src/ai_unit_test/core/implementations/indexing/memory_organizer.py
src/ai_unit_test/core/implementations/indexing/sklearn_organizer.py
src/ai_unit_test/core/implementations/llm/__init__.py
src/ai_unit_test/core/implementations/llm/huggingface_connector.py
src/ai_unit_test/core/implementations/llm/mock_connector.py
src/ai_unit_test/core/implementations/llm/openai_connector.py
src/ai_unit_test/core/interfaces/__init__.py
src/ai_unit_test/core/interfaces/index_organizer.py
src/ai_unit_test/core/interfaces/llm_connector.py
src/ai_unit_test/services/__init__.py
src/ai_unit_test/services/base_service.py
src/ai_unit_test/services/configuration_service.py
src/ai_unit_test/services/orchestration_service.py
src/ai_unit_test/services/processing_service.py
src/ai_unit_test/v2/__init__.py
src/ai_unit_test/v2/cli.py
src/ai_unit_test/v2/models.py
src/ai_unit_test/v2/orchestrator.py
src/ai_unit_test/v2/backends/__init__.py
src/ai_unit_test/v2/backends/base.py
src/ai_unit_test/v2/backends/copilot_cli.py
src/ai_unit_test/v2/backends/gemini_cli.py
src/ai_unit_test/v2/context/__init__.py
src/ai_unit_test/v2/context/builder.py
src/ai_unit_test/v2/patching/__init__.py
src/ai_unit_test/v2/patching/workspace.py
src/ai_unit_test/v2/reporting/__init__.py
src/ai_unit_test/v2/reporting/renderer.py
src/ai_unit_test/v2/reporting/store.py
src/ai_unit_test/v2/targeting/__init__.py
src/ai_unit_test/v2/targeting/selectors.py
src/ai_unit_test/v2/validation/__init__.py
src/ai_unit_test/v2/validation/feedback.py
src/ai_unit_test/v2/validation/runners.py
tests/conftest.py
tests/behaviors/__init__.py
tests/behaviors/test_processing_service_behaviors.py
tests/contracts/test_index_backend_contracts.py
tests/contracts/test_llm_provider_contracts.py
tests/fake_project/pyproject.toml
tests/fake_project/src/__init__.py
tests/fake_project/src/calculator.py
tests/fake_project/src/data_structures.py
tests/fake_project/src/simple_math.py
tests/fake_project/src/string_utils.py
tests/fake_project/tests/test_simple_math.py
tests/integration/test_backend_switching.py
tests/integration/test_provider_switching.py
tests/migration/test_backward_compatibility.py
tests/performance/test_cli_performance.py
tests/performance/test_memory_usage.py
tests/performance/test_search_performance.py
tests/unit/cli/__init__.py
tests/unit/cli/test_cli.py
tests/unit/cli/test_cli_commands.py
tests/unit/cli/test_cli_coverage.py
tests/unit/cli/test_main_orchestration.py
tests/unit/core/test_cli_manager.py
tests/unit/core/test_system_orchestrator.py
tests/unit/core/factories/__init__.py
tests/unit/core/factories/test_index_factory.py
tests/unit/core/factories/test_llm_factory.py
tests/unit/core/implementations/__init__.py
tests/unit/core/implementations/indexing/__init__.py
tests/unit/core/implementations/indexing/test_faiss_organizer.py
tests/unit/core/implementations/indexing/test_memory_organizer.py
tests/unit/core/implementations/indexing/test_sklearn_organizer.py
tests/unit/core/implementations/llm/__init__.py
tests/unit/core/implementations/llm/test_huggingface_connector.py
tests/unit/core/implementations/llm/test_mock_connector.py
tests/unit/core/implementations/llm/test_openai_connector.py
tests/unit/core/interfaces/__init__.py
tests/unit/core/interfaces/test_index_organizer.py
tests/unit/core/interfaces/test_llm_connector.py
tests/unit/fixtures/__init__.py
tests/unit/fixtures/create_fake_coverage.py
tests/unit/fixtures/dummy_source.py
tests/unit/fixtures/fake.coverage
tests/unit/fixtures/fake_pyproject.toml
tests/unit/helpers/__init__.py
tests/unit/helpers/test_coverage_helper.py
tests/unit/helpers/test_file_helper.py
tests/unit/main/__init__.py
tests/unit/main/test_dummy_source.py
tests/unit/main/test_main.py
tests/unit/main/test_main_module.py
tests/unit/services/__init__.py
tests/unit/services/test_base_service.py
tests/unit/services/test_configuration_service.py
tests/unit/services/test_orchestration_service.py
tests/unit/services/test_processing_service.py
tests/unit/services/test_test_processing_service.py
tests/unit/v2/__init__.py
tests/unit/v2/test_cli.py
tests/unit/v2/test_models.py
tests/unit/v2/test_orchestrator.py
tests/unit/v2/backends/__init__.py
tests/unit/v2/backends/test_backends.py
tests/unit/v2/context/__init__.py
tests/unit/v2/context/test_builder.py
tests/unit/v2/patching/__init__.py
tests/unit/v2/patching/test_workspace.py
tests/unit/v2/reporting/__init__.py
tests/unit/v2/reporting/test_reporting.py
tests/unit/v2/targeting/__init__.py
tests/unit/v2/targeting/test_selectors.py
tests/unit/v2/validation/__init__.py
tests/unit/v2/validation/test_runners.py