Files
codex/codex-rs/utils/audio/BUILD.bazel
Sean Huang cc03518c36 Extract audio preparation into a utility crate (#36807)
## What changed

- Add `codex-utils-audio` as a workspace crate for canonicalizing audio inputs
  and estimating their token usage.
- Update `codex-core` to consume the new crate while preserving the existing
  audio preparation tests.

GitOrigin-RevId: d719ecc08363ef52778aa37f3df0ca14f7778324
2026-08-03 22:46:26 +00:00

7 lines
119 B
Python

load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "audio",
crate_name = "codex_utils_audio",
)