LICENSE
README.md
pyproject.toml
src/__init__.py
src/api/__init__.py
src/api/main.py
src/api/middleware/__init__.py
src/api/middleware/error_handler.py
src/api/middleware/logging_middleware.py
src/api/middleware/rate_limit.py
src/api/middleware/request_id.py
src/api/models/__init__.py
src/api/models/request.py
src/api/models/response.py
src/api/routes/__init__.py
src/api/routes/analytics.py
src/api/routes/api_keys.py
src/api/routes/auth.py
src/api/routes/batch.py
src/api/routes/cache.py
src/api/routes/chart_templates.py
src/api/routes/comparison.py
src/api/routes/compression.py
src/api/routes/cost_tracking.py
src/api/routes/dashboards.py
src/api/routes/discovery.py
src/api/routes/export.py
src/api/routes/export_templates.py
src/api/routes/health.py
src/api/routes/history.py
src/api/routes/indexing.py
src/api/routes/management.py
src/api/routes/metrics.py
src/api/routes/optimization.py
src/api/routes/pagination.py
src/api/routes/pool_management.py
src/api/routes/query.py
src/api/routes/scheduled_exports.py
src/api/routes/scheduler.py
src/api/routes/sharing.py
src/api/routes/stats.py
src/api/routes/templates.py
src/api/routes/transformation.py
src/api/routes/versioning.py
src/api/routes/visualization.py
src/api/routes/webhooks.py
src/api/routes/websocket.py
src/application/__init__.py
src/application/services/__init__.py
src/application/services/advanced_visualization_service.py
src/application/services/batch_query_service.py
src/application/services/chart_template_service.py
src/application/services/dashboard_service.py
src/application/services/discovery_service.py
src/application/services/export_template_service.py
src/application/services/hybrid_query_router.py
src/application/services/indexing_service.py
src/application/services/pagination_service.py
src/application/services/query_comparison_service.py
src/application/services/query_service.py
src/application/services/query_template_service.py
src/application/services/scheduled_export_service.py
src/application/services/scheduler_service.py
src/application/services/transformation_service.py
src/application/services/visualization_service.py
src/cli/__init__.py
src/cli/main.py
src/core/__init__.py
src/core/constants.py
src/core/exceptions.py
src/domain/__init__.py
src/domain/database.py
src/domain/export_template.py
src/domain/query.py
src/domain/query_template.py
src/domain/result.py
src/domain/scheduled_export.py
src/domain/scheduled_query.py
src/domain/schema.py
src/domain/visualization.py
src/infrastructure/__init__.py
src/infrastructure/auth/__init__.py
src/infrastructure/auth/api_key_manager.py
src/infrastructure/auth/jwt_auth.py
src/infrastructure/auth/user_repository.py
src/infrastructure/cache/__init__.py
src/infrastructure/cache/repository.py
src/infrastructure/database/__init__.py
src/infrastructure/database/health_monitor.py
src/infrastructure/database/pool_manager.py
src/infrastructure/database/repository.py
src/infrastructure/database/validators.py
src/infrastructure/database/adapters/__init__.py
src/infrastructure/database/adapters/base.py
src/infrastructure/database/adapters/cassandra.py
src/infrastructure/database/adapters/elasticsearch.py
src/infrastructure/database/adapters/factory.py
src/infrastructure/database/adapters/mongodb.py
src/infrastructure/database/adapters/mysql.py
src/infrastructure/database/adapters/postgresql.py
src/infrastructure/database/adapters/sqlite.py
src/infrastructure/embeddings/__init__.py
src/infrastructure/embeddings/generator.py
src/infrastructure/export_template/__init__.py
src/infrastructure/export_template/repository.py
src/infrastructure/llm/__init__.py
src/infrastructure/llm/client.py
src/infrastructure/llm/generators/__init__.py
src/infrastructure/llm/generators/base.py
src/infrastructure/llm/generators/cql_generator.py
src/infrastructure/llm/generators/elasticsearch_generator.py
src/infrastructure/llm/generators/factory.py
src/infrastructure/llm/generators/mongodb_generator.py
src/infrastructure/llm/generators/sql_generator.py
src/infrastructure/query_history/__init__.py
src/infrastructure/query_history/repository.py
src/infrastructure/query_templates/repository.py
src/infrastructure/scheduled_export/__init__.py
src/infrastructure/scheduled_export/repository.py
src/infrastructure/scheduler/__init__.py
src/infrastructure/scheduler/repository.py
src/infrastructure/vector_db/__init__.py
src/infrastructure/vector_db/client.py
src/infrastructure/vector_db/content_indexer.py
src/infrastructure/vector_db/repository.py
src/infrastructure/vector_db/schema_indexer.py
src/sdk/__init__.py
src/sdk/client.py
src/sdk/sync_client.py
src/the_discoverer.egg-info/PKG-INFO
src/the_discoverer.egg-info/SOURCES.txt
src/the_discoverer.egg-info/dependency_links.txt
src/the_discoverer.egg-info/entry_points.txt
src/the_discoverer.egg-info/requires.txt
src/the_discoverer.egg-info/top_level.txt
src/utils/__init__.py
src/utils/analytics.py
src/utils/backoff.py
src/utils/benchmark.py
src/utils/chart_exporter.py
src/utils/circuit_breaker.py
src/utils/compression.py
src/utils/config_loader.py
src/utils/cost_tracker.py
src/utils/cron_parser.py
src/utils/helpers.py
src/utils/logger.py
src/utils/performance.py
src/utils/prometheus_metrics.py
src/utils/query_analyzer.py
src/utils/query_optimizer.py
src/utils/query_result_cache.py
src/utils/query_result_sharing.py
src/utils/query_versioning.py
src/utils/retry.py
src/utils/schema_change_detector.py
src/utils/sql_safety.py
src/utils/streaming.py
src/utils/validators.py
src/utils/webhooks.py
src/utils/exporters/__init__.py
src/utils/exporters/avro_exporter.py
src/utils/exporters/base.py
src/utils/exporters/csv_exporter.py
src/utils/exporters/excel_exporter.py
src/utils/exporters/factory.py
src/utils/exporters/json_exporter.py
src/utils/exporters/parquet_exporter.py