mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
* wip * refactor(tests): move sdk function tracing into rust python harness * dead code * fix: handle harness keyboard interrupts * refactor(tests): deduplicate rust python harness helpers * fix(harness): expose validated strategy choices * wip * refactor(harness): let strategies own parity reports * docs(harness): update strategy structure * refactor(harness): localize strategy report views * wip * fix(harness): satisfy mapping runner type checks * fix(harness): clarify trace parity output * wip * fix(harness): clarify unit mapping report * fix(harness): finalize trace parity contracts * refactor(harness): structure parity contracts * feat: derive unit test mapping from traces * feat(harness): map rstest test families * feat(ocr): port Azure document intelligence tests * feat(harness): enforce complete unit mappings * feat(ocr): add reducto core transforms * feat(harness): classify host-only unit tests * fix(ocr): complete Rust provider plumbing * fix(harness): reuse OCR parity workers
42 lines
965 B
TOML
42 lines
965 B
TOML
[package]
|
|
name = "litellm-python-bridge"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "_native"
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = ["abi3"]
|
|
abi3 = ["pyo3/abi3-py310"]
|
|
extension-module = ["pyo3/extension-module"]
|
|
panic-test = []
|
|
trace-parity = [
|
|
"dep:tracing",
|
|
"litellm-core/observability",
|
|
"litellm-ai-gateway/trace-parity",
|
|
]
|
|
|
|
[dependencies]
|
|
futures-util.workspace = true
|
|
tracing = { workspace = true, optional = true }
|
|
litellm-core = { workspace = true, features = ["bedrock-auth"] }
|
|
litellm-ai-gateway = { workspace = true, default-features = false }
|
|
litellm-python-interop.workspace = true
|
|
pyo3.workspace = true
|
|
pyo3-async-runtimes.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.8.2"
|
|
tokio-tungstenite.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[[bench]]
|
|
name = "serialization"
|
|
harness = false
|