From a01b5e66ffa471528f28f6133b5c5b804381202c Mon Sep 17 00:00:00 2001 From: axion66 Date: Tue, 5 Aug 2025 22:05:51 -0400 Subject: [PATCH] docs: improve repo layout and checks --- README.md | 2 +- run_checks.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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 .