File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ cost_caps:
251251grpc :
252252 # Enable the gRPC ingestion endpoint. When enabled, the proxy starts a
253253 # tonic gRPC server on a separate listen address that accepts traces in
254- # the LLMTrace-native protobuf format (see proto/llmtrace.proto).
254+ # the LLMTrace-native protobuf format (see crates/llmtrace- proto/llmtrace.proto).
255255 # Supports both unary batch and client-side streaming RPCs.
256256 enabled : false
257257 # Address and port to bind the gRPC server to.
File renamed without changes.
Original file line number Diff line number Diff line change 11fn main ( ) -> Result < ( ) , Box < dyn std:: error:: Error > > {
2- tonic_prost_build:: compile_protos ( "../../ proto/llmtrace.proto" ) ?;
2+ tonic_prost_build:: compile_protos ( "../llmtrace- proto/llmtrace.proto" ) ?;
33 Ok ( ( ) )
44}
Original file line number Diff line number Diff line change 11//! gRPC ingestion gateway for high-throughput trace ingestion.
22//!
3- //! Implements the `TraceIngestionService` defined in `proto/llmtrace.proto`
3+ //! Implements the `TraceIngestionService` defined in `crates/llmtrace- proto/llmtrace.proto`
44//! using `tonic`. Supports both unary batch ingestion and client-side
55//! streaming for efficient bulk uploads.
66//!
@@ -29,7 +29,7 @@ use crate::proxy::AppState;
2929// Generated protobuf types
3030// ---------------------------------------------------------------------------
3131
32- /// Generated protobuf module from `proto/llmtrace.proto`.
32+ /// Generated protobuf module from `crates/llmtrace- proto/llmtrace.proto`.
3333pub mod pb {
3434 include ! ( concat!( env!( "OUT_DIR" ) , "/llmtrace.ingest.v1.rs" ) ) ;
3535}
You can’t perform that action at this time.
0 commit comments