fix CI: cargo fmt, update reference config to use input_filters

This commit is contained in:
Adil Hafeez 2026-03-17 17:19:05 -07:00
parent 6d58469b82
commit 014c4578a5
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
3 changed files with 10 additions and 4 deletions

View file

@ -118,7 +118,13 @@ mod tests {
let headers = HeaderMap::new();
let request_bytes = serde_json::to_vec(&request).expect("failed to serialize request");
let result = pipeline_processor
.process_raw_filter_chain(&request_bytes, &test_pipeline, &agent_map, &headers, "/v1/chat/completions")
.process_raw_filter_chain(
&request_bytes,
&test_pipeline,
&agent_map,
&headers,
"/v1/chat/completions",
)
.await;
println!("Pipeline processing result: {:?}", result);