Files
codex/codex-rs/lmstudio/Cargo.toml
Celia Chen 21db216db0 Route LM Studio requests through the shared HTTP client (#34678)
## What changed

- Use the configured route-aware HTTP client pool for LM Studio server requests.
- Add connection-timeout support to `HttpClientBuilder` and route-aware pools, and keep LM Studio's five-second limit scoped to connection establishment.
- Verify that LM Studio accepts a response that arrives after the connection timeout has elapsed once the connection is established.

GitOrigin-RevId: c4300f4b5d37c4418822783ab09cb50d506ee423
2026-07-22 04:17:34 +00:00

28 lines
571 B
TOML

[package]
name = "codex-lmstudio"
version.workspace = true
edition.workspace = true
license.workspace = true
[lib]
name = "codex_lmstudio"
path = "src/lib.rs"
doctest = false
[dependencies]
codex-core = { path = "../core" }
codex-http-client = { workspace = true }
codex-model-provider-info = { path = "../model-provider-info" }
serde_json = "1"
tokio = { version = "1", features = ["rt"] }
tracing = { version = "0.1.44", features = ["log"] }
which = "8.0"
[dev-dependencies]
wiremock = "0.6"
tokio = { version = "1", features = ["full"] }
[lints]
workspace = true