mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## 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
28 lines
571 B
TOML
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
|