code-shredding

This commit is contained in:
2026-02-24 03:50:34 +00:00
parent 98a1b5939e
commit 4bc244711f
71 changed files with 1016 additions and 2417 deletions

View File

@@ -0,0 +1,20 @@
import logging
import typer
from .config import Settings
from .pipeline import run_pipeline
app = typer.Typer()
@app.command()
def run_ingestion():
"""Main function for the CLI script."""
logging.basicConfig(level=logging.INFO)
settings = Settings.model_validate({})
run_pipeline(settings)
if __name__ == "__main__":
app()