mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
* adding canonical tracing support via bright-staff * improved formatting for tools in the traces * removing anthropic from the currency exchange demo * using Envoy to transport traces, not calling OTEL directly * moving otel collcetor cluster outside tracing if/else * minor fixes to not write to the OTEL collector if tracing is disabled * fixed PR comments and added more trace attributes * more fixes based on PR comments * more clean up based on PR comments --------- Co-authored-by: Salman Paracha <salmanparacha@MacBook-Pro-342.local>
15 lines
250 B
Rust
15 lines
250 B
Rust
pub mod api;
|
|
pub mod configuration;
|
|
pub mod consts;
|
|
pub mod errors;
|
|
pub mod http;
|
|
pub mod llm_providers;
|
|
pub mod path;
|
|
pub mod pii;
|
|
pub mod ratelimit;
|
|
pub mod routing;
|
|
pub mod stats;
|
|
pub mod tokenizer;
|
|
pub mod tracing;
|
|
pub mod traces;
|
|
pub mod utils;
|