From bf8c561821d77ea9b0d62ce6c9d99300dac94207 Mon Sep 17 00:00:00 2001 From: "Mayank Jain (SW-Tegra)" Date: Wed, 6 May 2026 14:57:20 +0530 Subject: [PATCH 1/2] chore: bump common submodule for runtime_config proto field Updates common submodule pointer to 0976443 ('Add field to support tuning ASR configuration at runtime'), which lands the map runtime_config field on StreamingRecognizeRequest. This field carries per-chunk runtime flags such as force_eou. Co-Authored-By: Claude Opus 4.7 (1M context) --- common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common b/common index 87a6b16..0976443 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 87a6b16299d7d57a17f6fa76ed38959798902810 +Subproject commit 09764438d0c3d950a2c1def7b514a976668941e5 From e5eecabbb55672d4c9662922e5f185dc44c60715 Mon Sep 17 00:00:00 2001 From: "Mayank Jain (SW-Tegra)" Date: Wed, 6 May 2026 14:42:21 +0530 Subject: [PATCH 2/2] build: declare build dependencies in pyproject.toml setup.py imports grpc_tools at module level (to compile protos at install time). Without a [build-system] table, pip's isolated build env lacks grpc_tools and pip install fails before setup() runs. Declare the build deps explicitly so pip install -e . works under build isolation. Co-Authored-By: Claude Opus 4.7 (1M context) --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..86dab9f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=61", "wheel", "grpcio-tools"] +build-backend = "setuptools.build_meta"