MCPcopy Create free account
hub / github.com/NVIDIA/NeMo-Relay / parse_cache_telemetry_request_id

Function parse_cache_telemetry_request_id

crates/python/src/py_adaptive.rs:264–268  ·  view source on GitHub ↗
(request_id: &str)

Source from the content-addressed store, hash-verified

262}
263
264fn parse_cache_telemetry_request_id(request_id: &str) -> PyResult<Uuid> {
265 Uuid::parse_str(request_id).map_err(|e| {
266 pyo3::exceptions::PyValueError::new_err(format!("invalid request_id UUID: {e}"))
267 })
268}
269
270fn parse_cache_telemetry_timestamp(timestamp: Option<&str>) -> PyResult<DateTime<Utc>> {
271 match timestamp {

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected