core-agent-ide/codex-rs/core
Michael Bolin 8a424fcfa3
feat: add new config option: model_supports_reasoning_summaries (#1524)
As noted in the updated docs, this makes it so that you can set:

```toml
model_supports_reasoning_summaries = true
```

as a way of overriding the existing heuristic for when to set the
`reasoning` field on a sampling request:


341c091c5b/codex-rs/core/src/client_common.rs (L152-L166)
2025-07-10 14:30:33 -07:00
..
src feat: add new config option: model_supports_reasoning_summaries (#1524) 2025-07-10 14:30:33 -07:00
tests chore(rs): update dependencies (#1494) 2025-07-10 11:08:16 -07:00
Cargo.toml chore(deps): bump toml from 0.9.0 to 0.9.1 in /codex-rs (#1514) 2025-07-10 11:34:37 -07:00
prompt.md feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629) 2025-04-24 13:31:40 -07:00
README.md feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629) 2025-04-24 13:31:40 -07:00

codex-core

This crate implements the business logic for Codex. It is designed to be used by the various Codex UIs written in Rust.

Though for non-Rust UIs, we are also working to define a protocol for talking to Codex. See:

You can use the proto subcommand using the executable in the cli crate to speak the protocol using newline-delimited-JSON over stdin/stdout.