Skip to content

Add sentence- and heading-aware chunking with a pluggable tokenizer (… #39

Add sentence- and heading-aware chunking with a pluggable tokenizer (…

Add sentence- and heading-aware chunking with a pluggable tokenizer (… #39

Workflow file for this run

name: CI
on:
push:
branches: ["main", "master", "develop"]
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install test tooling
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,observability-cli]"
- name: Lint
run: ruff check src tests
- name: Type check
run: mypy src
- name: CLI smoke check
run: python -m llm_observability_analytics.cli.main --help
- name: Ingestion CLI smoke check
run: python -m llm_knowledge_ingestion.cli.main --help
- name: Foundry CLI smoke check
run: python -m llm_dataset_foundry.cli.main --help
- name: Test
run: python -m scripts.run_tests_by_package