runtime: propagate request context through adapters

This commit is contained in:
a.tolmachev
2026-05-01 11:44:43 +00:00
parent 3b1a7c6993
commit 7be6bed347
6 changed files with 530 additions and 24 deletions
+2
View File
@@ -4,6 +4,7 @@ mod error;
mod executor;
mod model;
mod redaction;
mod request_context;
mod secret_crypto;
mod streaming;
@@ -11,5 +12,6 @@ pub use auth::ResolvedAuth;
pub use error::RuntimeError;
pub use executor::RuntimeExecutor;
pub use model::{AdapterResponse, PreparedRequest, RuntimeOperation};
pub use request_context::RuntimeRequestContext;
pub use secret_crypto::SecretCrypto;
pub use streaming::WindowExecutionResult;