mirror of
https://github.com/openai/codex.git
synced 2026-09-20 12:47:38 +00:00
Preserve known error classifications, including BioPolicy, while falling back to Other for unknown values so saved sessions can still be read. Add optional gateway OAuth settings to model provider configuration. Co-authored-by: Owen Lin <owen@openai.com> Co-authored-by: alexsong-oai <alexsong@openai.com> GitOrigin-RevId: 64bcf45ca042efca7645c798db3746375426b0fe
30 lines
701 B
TOML
30 lines
701 B
TOML
[package]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "codex-model-provider-info"
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
name = "codex_model_provider_info"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codex-api = { workspace = true }
|
|
codex-protocol = { workspace = true }
|
|
codex-utils-redacted-string = { workspace = true }
|
|
http = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
codex-utils-absolute-path = { workspace = true }
|
|
maplit = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
toml = { workspace = true }
|