From 1689c8ba993e91fb7686b7c93c1d1e35bb9ea70c Mon Sep 17 00:00:00 2001 From: Teo Date: Tue, 7 Jan 2025 15:58:16 +0100 Subject: [PATCH] OTELConfig: add redundant fields from Configuration (remove later) --- agentops/telemetry/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/agentops/telemetry/config.py b/agentops/telemetry/config.py index 9c942d6c..e48ed382 100644 --- a/agentops/telemetry/config.py +++ b/agentops/telemetry/config.py @@ -18,3 +18,7 @@ class OTELConfig: metric_readers: Optional[List] = None enable_in_flight: bool = True in_flight_interval: float = 1.0 + max_queue_size: int = 512 + max_wait_time: int = 5000 + endpoint: str = "https://api.agentops.ai" + api_key: Optional[str] = None