diff --git a/README.md b/README.md index d9c5f13..5b460ca 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ through thin [`pyo3`](https://pyo3.rs/) bindings. │ ├── tests.rs # Canonical Rust test-suite │ └── py_module.rs # PyO3 bindings ⇒ compiled as openai_harmony.*.so │ -├── harmony/ # Pure-Python wrapper around the binding +├── python/openai_harmony/ # Pure-Python wrapper around the binding │ └── __init__.py # Dataclasses + helper API mirroring chat.rs │ ├── tests/ # Python test-suite (1-to-1 port of tests.rs) diff --git a/run_checks.sh b/run_checks.sh index 2b9d439..c945094 100755 --- a/run_checks.sh +++ b/run_checks.sh @@ -5,4 +5,5 @@ set -e cargo fmt --check cargo clippy --all-targets --all-features -- -D warnings cargo test --all-targets --all-features - +mypy python/openai_harmony +ruff check .