hud-python 0.4.17__py3-none-any.whl → 0.4.18__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of hud-python might be problematic. Click here for more details.

@@ -54,7 +54,7 @@ class ResponseAgent:
54
54
  """
55
55
  try:
56
56
  response = await self.client.chat.completions.create(
57
- model="gpt-4o",
57
+ model="gpt-5-nano",
58
58
  messages=[
59
59
  {"role": "system", "content": self.system_prompt},
60
60
  {
@@ -21,6 +21,7 @@ from typing import TYPE_CHECKING, Any, cast
21
21
 
22
22
  import mcp.types as types
23
23
 
24
+ from hud import instrument
24
25
  from hud.types import AgentResponse, MCPToolCall, MCPToolResult
25
26
 
26
27
  from .base import MCPAgent
@@ -52,6 +53,7 @@ class GenericOpenAIChatAgent(MCPAgent):
52
53
  self.model_name = model_name
53
54
  self.parallel_tool_calls = parallel_tool_calls
54
55
  self.logprobs = logprobs
56
+ self.conversation_history = []
55
57
 
56
58
  @staticmethod
57
59
  def _oai_to_mcp(tool_call: Any) -> MCPToolCall: # type: ignore[valid-type]
@@ -64,40 +66,114 @@ class GenericOpenAIChatAgent(MCPAgent):
64
66
 
65
67
  async def get_system_messages(self) -> list[Any]:
66
68
  """Get system messages for OpenAI."""
67
- return [
68
- {"role": "system", "content": self.system_prompt},
69
- ]
69
+ return [{"role": "system", "content": self.system_prompt}]
70
70
 
71
71
  async def format_blocks(self, blocks: list[types.ContentBlock]) -> list[Any]:
72
72
  """Format blocks for OpenAI."""
73
- return [
74
- {
75
- "role": "user",
76
- "content": [
77
- {"type": "text", "text": block.text}
78
- for block in blocks
79
- if isinstance(block, types.TextContent)
80
- ],
81
- },
82
- ]
73
+ content = []
74
+ for block in blocks:
75
+ if isinstance(block, types.TextContent):
76
+ content.append({"type": "text", "text": block.text})
77
+ elif isinstance(block, types.ImageContent):
78
+ content.append(
79
+ {
80
+ "type": "image_url",
81
+ "image_url": {"url": f"data:{block.mimeType};base64,{block.data}"},
82
+ }
83
+ )
84
+
85
+ return [{"role": "user", "content": content}]
86
+
87
+ def _sanitize_schema_for_openai(self, schema: dict) -> dict:
88
+ """Convert MCP JSON Schema to OpenAI-compatible format.
89
+
90
+ Handles unsupported features like anyOf and prefixItems.
91
+ """
92
+ if not isinstance(schema, dict):
93
+ return schema
94
+
95
+ sanitized = {}
96
+
97
+ for key, value in schema.items():
98
+ if key == "anyOf" and isinstance(value, list):
99
+ # Handle anyOf patterns (usually for nullable fields)
100
+ non_null_types = [
101
+ v for v in value if not (isinstance(v, dict) and v.get("type") == "null")
102
+ ]
103
+ if non_null_types:
104
+ # Use the first non-null type
105
+ sanitized.update(self._sanitize_schema_for_openai(non_null_types[0]))
106
+ else:
107
+ sanitized["type"] = "string" # Fallback
108
+
109
+ elif key == "prefixItems":
110
+ # Convert prefixItems to simple items
111
+ sanitized["type"] = "array"
112
+ if isinstance(value, list) and value:
113
+ # Use the type from the first item as the items schema
114
+ first_item = value[0]
115
+ if isinstance(first_item, dict):
116
+ sanitized["items"] = {"type": first_item.get("type", "string")}
117
+ else:
118
+ sanitized["items"] = {"type": "string"}
119
+
120
+ elif key == "properties" and isinstance(value, dict):
121
+ # Recursively sanitize property schemas
122
+ sanitized[key] = {
123
+ prop_name: self._sanitize_schema_for_openai(prop_schema)
124
+ for prop_name, prop_schema in value.items()
125
+ }
126
+
127
+ elif key == "items" and isinstance(value, dict):
128
+ # Recursively sanitize items schema
129
+ sanitized[key] = self._sanitize_schema_for_openai(value)
130
+
131
+ elif key in (
132
+ "type",
133
+ "description",
134
+ "enum",
135
+ "required",
136
+ "default",
137
+ "minimum",
138
+ "maximum",
139
+ "minItems",
140
+ "maxItems",
141
+ ):
142
+ # These are supported by OpenAI
143
+ sanitized[key] = value
144
+
145
+ return sanitized or {"type": "object"}
83
146
 
84
147
  def get_tool_schemas(self) -> list[dict]:
85
148
  tool_schemas = super().get_tool_schemas()
86
149
  openai_tools = []
87
150
  for schema in tool_schemas:
151
+ parameters = schema.get("parameters", {})
152
+
153
+ if parameters:
154
+ sanitized_params = self._sanitize_schema_for_openai(parameters)
155
+ else:
156
+ sanitized_params = {"type": "object", "properties": {}}
157
+
88
158
  openai_tool = {
89
159
  "type": "function",
90
160
  "function": {
91
161
  "name": schema["name"],
92
162
  "description": schema.get("description", ""),
93
- "parameters": schema.get("parameters", {"type": "object", "properties": {}}),
163
+ "parameters": sanitized_params,
94
164
  },
95
165
  }
96
166
  openai_tools.append(openai_tool)
97
167
  return openai_tools
98
168
 
169
+ @instrument(
170
+ span_type="agent",
171
+ record_args=False,
172
+ record_result=True,
173
+ )
99
174
  async def get_response(self, messages: list[Any]) -> AgentResponse:
100
175
  """Send chat request to OpenAI and convert the response."""
176
+
101
177
  # Convert MCP tool schemas to OpenAI format
102
178
  mcp_schemas = self.get_tool_schemas()
103
179
 
@@ -112,6 +188,19 @@ class GenericOpenAIChatAgent(MCPAgent):
112
188
  choice = response.choices[0]
113
189
  msg = choice.message
114
190
 
191
+ assistant_msg: dict[str, Any] = {"role": "assistant"}
192
+
193
+ if msg.content:
194
+ assistant_msg["content"] = msg.content
195
+
196
+ if msg.tool_calls:
197
+ assistant_msg["tool_calls"] = msg.tool_calls
198
+
199
+ messages.append(assistant_msg)
200
+
201
+ # Store the complete conversation history
202
+ self.conversation_history = messages.copy()
203
+
115
204
  tool_calls = []
116
205
  if msg.tool_calls:
117
206
  for tc in msg.tool_calls:
@@ -123,7 +212,7 @@ class GenericOpenAIChatAgent(MCPAgent):
123
212
  return AgentResponse(
124
213
  content=msg.content or "",
125
214
  tool_calls=tool_calls,
126
- done=choice.finish_reason == "stop",
215
+ done=choice.finish_reason in ("stop", "length"),
127
216
  raw=response, # Include raw response for access to Choice objects
128
217
  )
129
218
 
@@ -132,23 +221,68 @@ class GenericOpenAIChatAgent(MCPAgent):
132
221
  tool_calls: list[MCPToolCall],
133
222
  tool_results: list[MCPToolResult],
134
223
  ) -> list[Any]:
135
- """Render MCP tool results as OpenAI ``role=tool`` messages."""
224
+ """Render MCP tool results as OpenAI messages.
225
+
226
+ Note: OpenAI tool messages only support string content.
227
+ When images are present, we return both a tool message and a user message.
228
+ """
136
229
  rendered: list[dict[str, Any]] = []
137
230
  for call, res in zip(tool_calls, tool_results, strict=False):
138
- if res.structuredContent:
139
- content = json.dumps(res.structuredContent)
140
- else:
141
- # Concatenate any TextContent blocks
142
- content = "".join(
143
- c.text # type: ignore[attr-defined]
144
- for c in res.content
145
- if hasattr(c, "text")
146
- )
231
+ # Use structuredContent.result if available, otherwise use content
232
+ items = res.content
233
+ if res.structuredContent and isinstance(res.structuredContent, dict):
234
+ items = res.structuredContent.get("result", res.content)
235
+
236
+ # Separate text and image content
237
+ text_parts = []
238
+ image_parts = []
239
+
240
+ for item in items:
241
+ if isinstance(item, dict):
242
+ if item.get("type") == "text":
243
+ text_parts.append(item.get("text", ""))
244
+ elif item.get("type") == "image":
245
+ mime_type = item.get("mimeType", "image/png")
246
+ data = item.get("data", "")
247
+ image_parts.append(
248
+ {
249
+ "type": "image_url",
250
+ "image_url": {
251
+ "url": f"data:{mime_type};base64,{data}"
252
+ },
253
+ }
254
+ )
255
+ elif isinstance(item, types.TextContent):
256
+ text_parts.append(item.text)
257
+ elif isinstance(item, types.ImageContent):
258
+ image_parts.append(
259
+ {
260
+ "type": "image_url",
261
+ "image_url": {"url": f"data:{item.mimeType};base64,{item.data}"},
262
+ }
263
+ )
264
+
265
+ text_content = "".join(text_parts) if text_parts else "Tool executed successfully"
147
266
  rendered.append(
148
267
  {
149
268
  "role": "tool",
150
269
  "tool_call_id": call.id,
151
- "content": content or "", # Ensure content is never None
270
+ "content": text_content,
152
271
  }
153
272
  )
273
+
274
+ # If there are images, add them as a separate user message
275
+ if image_parts:
276
+ # Add a user message with the images
277
+ content_with_images = [
278
+ {"type": "text", "text": "Tool returned the following:"},
279
+ *image_parts
280
+ ]
281
+ rendered.append(
282
+ {
283
+ "role": "user",
284
+ "content": content_with_images,
285
+ }
286
+ )
287
+
154
288
  return rendered
@@ -40,6 +40,7 @@ def _process_worker(
40
40
  2. Creates its own event loop
41
41
  3. Processes a batch of tasks asynchronously
42
42
  4. Returns results with their original indices
43
+ 5. Handles interruption signals gracefully
43
44
 
44
45
  Args:
45
46
  task_batch: List of (index, task_dict) tuples
@@ -58,6 +59,7 @@ def _process_worker(
58
59
  List of (index, result) tuples
59
60
  """
60
61
  # Import inside worker to avoid pickling issues
62
+ import signal
61
63
  import sys
62
64
 
63
65
  import hud
@@ -72,6 +74,14 @@ def _process_worker(
72
74
  except AttributeError:
73
75
  pass
74
76
 
77
+ # Set up signal handler for clean interruption
78
+ def signal_handler(signum: int, frame: Any) -> None:
79
+ logger.warning("Worker %s: Received interrupt signal", worker_id)
80
+ # Raise KeyboardInterrupt to actually interrupt the worker
81
+ raise KeyboardInterrupt(f"Worker {worker_id} interrupted by user")
82
+
83
+ signal.signal(signal.SIGINT, signal_handler)
84
+
75
85
  # Reinitialize telemetry in this process
76
86
  configure_telemetry()
77
87
 
@@ -157,8 +167,25 @@ def _process_worker(
157
167
  # Process all tasks in parallel within this process
158
168
  tasks = [process_single_task(idx, task_dict) for idx, task_dict in task_batch]
159
169
 
160
- results = await asyncio.gather(*tasks, return_exceptions=False)
161
- return results
170
+ try:
171
+ results = await asyncio.gather(*tasks, return_exceptions=False)
172
+ return results
173
+ except asyncio.CancelledError:
174
+ logger.info("Worker %s: Tasks cancelled due to interruption", worker_id)
175
+ # Return error results for all tasks
176
+ return [
177
+ (
178
+ idx,
179
+ {
180
+ "error": "Task cancelled (Ctrl+C)",
181
+ "isError": True,
182
+ "reward": 0.0,
183
+ "done": False,
184
+ "content": "Task cancelled",
185
+ },
186
+ )
187
+ for idx, _ in task_batch
188
+ ]
162
189
 
163
190
  try:
164
191
  # Run the async batch processing
@@ -180,6 +207,24 @@ def _process_worker(
180
207
  logger.warning("Worker %s: Telemetry flush timed out", worker_id)
181
208
 
182
209
  return results
210
+ except KeyboardInterrupt:
211
+ logger.info("Worker %s: Interrupted by user, stopping gracefully", worker_id)
212
+ # Return partial results for tasks that completed
213
+ partial_results = []
214
+ for idx, _ in task_batch:
215
+ partial_results.append(
216
+ (
217
+ idx,
218
+ {
219
+ "error": "Worker interrupted by user (Ctrl+C)",
220
+ "isError": True,
221
+ "reward": 0.0,
222
+ "done": False,
223
+ "content": "Task interrupted",
224
+ },
225
+ )
226
+ )
227
+ return partial_results
183
228
  except Exception as e:
184
229
  logger.error("[Worker %s] Batch processing failed: %s", worker_id, e)
185
230
  logger.error("Worker %s batch processing failed: %s", worker_id, e)
@@ -365,7 +410,8 @@ async def run_dataset_parallel_manual(
365
410
  )
366
411
 
367
412
  # Process batches in parallel using ProcessPoolExecutor
368
- with ProcessPoolExecutor(max_workers=max_workers) as executor:
413
+ executor = ProcessPoolExecutor(max_workers=max_workers)
414
+ try:
369
415
  # Submit all batches to workers
370
416
  future_to_batch = {
371
417
  executor.submit(worker_func, batch, worker_id=i): batch
@@ -377,48 +423,78 @@ async def run_dataset_parallel_manual(
377
423
  total = len(task_dicts)
378
424
 
379
425
  # Process results as they complete
380
- for future in as_completed(future_to_batch):
381
- batch = future_to_batch[future]
382
-
383
- try:
384
- # Get results from this worker
385
- batch_results = future.result()
386
-
387
- # Place results in correct positions
388
- for index, result in batch_results:
389
- results[index] = result
390
- completed += 1
391
-
392
- # Calculate success rate so far
393
- successful_so_far = sum(
394
- 1
395
- for r in results[:completed]
396
- if r is not None and getattr(r, "reward", 0) > 0
397
- )
426
+ try:
427
+ for future in as_completed(future_to_batch):
428
+ batch = future_to_batch[future]
429
+
430
+ try:
431
+ # Get results from this worker
432
+ batch_results = future.result()
433
+
434
+ # Place results in correct positions
435
+ for index, result in batch_results:
436
+ results[index] = result
437
+ completed += 1
438
+
439
+ # Calculate success rate so far
440
+ successful_so_far = sum(
441
+ 1
442
+ for r in results[:completed]
443
+ if r is not None and getattr(r, "reward", 0) > 0
444
+ )
398
445
 
399
- progress_msg = (
400
- f"Progress: {completed}/{total} tasks completed "
401
- f"({100 * completed / total:.1f}%) | "
402
- f"Success rate: {successful_so_far}/{completed} "
403
- f"({100 * successful_so_far / completed:.1f}%)"
404
- )
446
+ progress_msg = (
447
+ f"Progress: {completed}/{total} tasks completed "
448
+ f"({100 * completed / total:.1f}%) | "
449
+ f"Success rate: {successful_so_far}/{completed} "
450
+ f"({100 * successful_so_far / completed:.1f}%)"
451
+ )
405
452
 
406
- logger.info(progress_msg)
453
+ logger.info(progress_msg)
407
454
 
408
- except Exception as e:
409
- # Handle worker failure
410
- logger.error("Worker failed with exception: %s\n%s", e, traceback.format_exc())
455
+ except Exception as e:
456
+ # Handle worker failure
457
+ logger.error(
458
+ "Worker failed with exception: %s\n%s", e, traceback.format_exc()
459
+ )
411
460
 
412
- # Mark all tasks in this batch as failed
413
- for index, _ in batch:
414
- results[index] = {
415
- "error": f"Worker process failed: {e}",
461
+ # Mark all tasks in this batch as failed
462
+ for index, _ in batch:
463
+ results[index] = {
464
+ "error": f"Worker process failed: {e}",
465
+ "isError": True,
466
+ "reward": 0.0,
467
+ "done": False,
468
+ "content": f"Worker process failed: {e}",
469
+ }
470
+ completed += 1
471
+
472
+ except KeyboardInterrupt:
473
+ logger.warning("\n⚠️ Parallel evaluation interrupted by user (Ctrl+C)")
474
+ logger.info("Cancelling pending tasks...")
475
+
476
+ # Cancel all pending futures
477
+ for future in future_to_batch:
478
+ if not future.done():
479
+ future.cancel()
480
+
481
+ # Mark uncompleted tasks as interrupted
482
+ for i, r in enumerate(results):
483
+ if r is None:
484
+ results[i] = {
485
+ "error": "Evaluation interrupted by user",
416
486
  "isError": True,
417
487
  "reward": 0.0,
418
488
  "done": False,
419
- "content": f"Worker process failed: {e}",
489
+ "content": "Task interrupted (Ctrl+C)",
420
490
  }
421
- completed += 1
491
+
492
+ logger.info("Interrupted after %s/%s tasks", completed, total)
493
+ raise # Re-raise to propagate the interrupt
494
+
495
+ finally:
496
+ # Always shutdown the executor properly
497
+ executor.shutdown(wait=False, cancel_futures=True)
422
498
 
423
499
  # Verify all results are populated
424
500
  missing = [i for i, r in enumerate(results) if r is None]
hud/otel/exporters.py CHANGED
@@ -14,6 +14,7 @@ from __future__ import annotations
14
14
  import contextlib
15
15
  import json
16
16
  import logging
17
+ import time
17
18
  from collections import defaultdict
18
19
  from datetime import UTC, datetime
19
20
  from typing import TYPE_CHECKING, Any
@@ -362,5 +363,7 @@ class HudSpanExporter(SpanExporter):
362
363
  pass
363
364
 
364
365
  def force_flush(self, timeout_millis: int | None = None) -> bool: # type: ignore[override]
366
+ if timeout_millis:
367
+ time.sleep(timeout_millis / 1000)
365
368
  # Synchronous export, nothing buffered here
366
369
  return True
hud/otel/processors.py CHANGED
@@ -1,6 +1,7 @@
1
1
  from __future__ import annotations
2
2
 
3
3
  import logging
4
+ import time
4
5
  from typing import Any
5
6
 
6
7
  from opentelemetry import baggage
@@ -115,4 +116,6 @@ class HudEnrichmentProcessor(SpanProcessor):
115
116
  pass
116
117
 
117
118
  def force_flush(self, timeout_millis: int | None = None) -> bool: # type: ignore[override]
119
+ if timeout_millis:
120
+ time.sleep(timeout_millis / 1000)
118
121
  return True
@@ -5,4 +5,4 @@ def test_import():
5
5
  """Test that the package can be imported."""
6
6
  import hud
7
7
 
8
- assert hud.__version__ == "0.4.17"
8
+ assert hud.__version__ == "0.4.18"
hud/version.py CHANGED
@@ -4,4 +4,4 @@ Version information for the HUD SDK.
4
4
 
5
5
  from __future__ import annotations
6
6
 
7
- __version__ = "0.4.17"
7
+ __version__ = "0.4.18"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hud-python
3
- Version: 0.4.17
3
+ Version: 0.4.18
4
4
  Summary: SDK for the HUD platform.
5
5
  Project-URL: Homepage, https://github.com/hud-evals/hud-python
6
6
  Project-URL: Bug Tracker, https://github.com/hud-evals/hud-python/issues
@@ -2,15 +2,15 @@ hud/__init__.py,sha256=BjAhZtsHbGN371Q8t3o4v4jltedkmDE85xW0yOILU9g,397
2
2
  hud/__main__.py,sha256=YR8Dq8OhINOsVfQ55PmRXXg4fEK84Rt_-rMtJ5rvhWo,145
3
3
  hud/settings.py,sha256=q9aZiHjvbL4oLE-N8AttTW4rmzS8zPMnsca-iMGyEGc,2362
4
4
  hud/types.py,sha256=gNnyS1G7aYHIR5sT3k3bOfSTFnPylUO6lNGLWbjbeYk,5149
5
- hud/version.py,sha256=EkdQIoYM_NJvpzVexCJEPP60FkfL3uxxcA80nz-GVIE,105
5
+ hud/version.py,sha256=8Ag1N-qzwxUt5QwVLTJ5Z43L6M6O6FLpCKva6zONOfc,105
6
6
  hud/agents/__init__.py,sha256=UoIkljWdbq4bM0LD-mSaw6w826EqdEjOk7r6glNYwYQ,286
7
7
  hud/agents/base.py,sha256=rbwYP_a6XTwhY_5CaBlE7SWflnTq1EOuDiNY2XeUWdM,28275
8
8
  hud/agents/claude.py,sha256=_eD_XKZhVJ6grkHQfbS6JskztueomQcmJeGJMbfNdmE,14534
9
9
  hud/agents/langchain.py,sha256=1EgCy8jfjunsWxlPC5XfvfLS6_XZVrIF1ZjtHcrvhYw,9584
10
10
  hud/agents/openai.py,sha256=tvFYsZ5yaoLkfjMnHe-COxRttMsLRXBLPdSqgeipQRk,14257
11
- hud/agents/openai_chat_generic.py,sha256=jTJ-KY6HkglPK0iwZH5v3PVnaUjDsWc9IbRo3AbXlyE,5322
11
+ hud/agents/openai_chat_generic.py,sha256=Q6eKlKQIF2o04eGpIcBAyqpdcgRvuolbxmgWTT6ktEQ,10478
12
12
  hud/agents/misc/__init__.py,sha256=BYi4Ytp9b_vycpZFXnr5Oyw6ncKLNNGml8Jrb7bWUb4,136
13
- hud/agents/misc/response_agent.py,sha256=MsnIVElXM4ABrSJfEc_MMYp1Y_Rxmkq4kEGJ9vDX7hw,3098
13
+ hud/agents/misc/response_agent.py,sha256=pnaomb4H-QJm1YKU3tC1YnZXxOlDbTHIXaIH-6Nkb6I,3102
14
14
  hud/agents/tests/__init__.py,sha256=W-O-_4i34d9TTyEHV-O_q1Ai1gLhzwDaaPo02_TWQIY,34
15
15
  hud/agents/tests/test_base.py,sha256=F39ajSqASGUbPyPoWSY9KARFav62qNTK74W11Tr1Tg4,28970
16
16
  hud/agents/tests/test_claude.py,sha256=wqEKlzEvx8obz1sSm4NY0j-Zyt1qWNfDOmRqYIuAEd0,13069
@@ -79,7 +79,7 @@ hud/datasets/__init__.py,sha256=74T4mrjELKtE04XkZKwU8QAJcg2wjqXLqRO9s4GlPr4,678
79
79
  hud/datasets/task.py,sha256=V82HzRb2_c2MO9EG5ZcY-PMsLt3234Uks7WlkMta5HY,3615
80
80
  hud/datasets/utils.py,sha256=3hKvZTkZuCRkTeITB86nNdA1dtHZAqFfAdSPMtcTUhs,4275
81
81
  hud/datasets/execution/__init__.py,sha256=4m1AEpMQaUSJFVN_iAXvY6zFttVgZKwE6oQtC0Rrk7U,330
82
- hud/datasets/execution/parallel.py,sha256=AxtbEgX1v9UFO3nHN91vQyhtfeU6oe65rV50ubDWBkg,22182
82
+ hud/datasets/execution/parallel.py,sha256=4aL1XpS3vOBqZjgs0vrMZJ4eAoi86Td8C-m5SUtVxMs,25231
83
83
  hud/datasets/execution/runner.py,sha256=EEvb90vvAqFXXx8NyVKLfK5p-gtsfJqiFJAoqSjyfXg,4695
84
84
  hud/misc/__init__.py,sha256=m_pprQQ-G-Y0Sd0NEiR8MtAMbElnuFZ2OWT8TXrw7c4,43
85
85
  hud/misc/claude_plays_pokemon.py,sha256=IthAkjDVr2Q-GNvX-QLJyMzN7-0pHqqJbagGNv2m7yo,10453
@@ -87,9 +87,9 @@ hud/otel/__init__.py,sha256=ii17ayoWiS5vAhA7UAmZ8TkmP52gs2pWyHsD46-uYbE,1003
87
87
  hud/otel/collector.py,sha256=jLZymZ8r7xt2VDuWexfbnT7PY1-0aiyLMgjBy8KDY1M,4497
88
88
  hud/otel/config.py,sha256=6np_C2UXhtKHHjY41HQxZElua2Eh_EUCBiRB_YuiSuc,6249
89
89
  hud/otel/context.py,sha256=C9MvO99cRSNNDEDC7ehO3eoTPnb6J7AemUYvEp57yEU,17774
90
- hud/otel/exporters.py,sha256=TP7SF6ySCP-gFV1i-u5-HbpYsK3n9GP3OjW_ZBfsj-w,14246
90
+ hud/otel/exporters.py,sha256=RLAjWa8b2DJEU21740Idq4fmeIuabLEqGGUspcFDcH4,14331
91
91
  hud/otel/instrumentation.py,sha256=xTjrkn2p490lJ8UlSD1SfzkPZsD8XKDocQqYQfwMMKo,3775
92
- hud/otel/processors.py,sha256=yI5BWsDBMEPfwMzD-iWbJd4KWH3qUDSe-5-C1yT6fjU,4615
92
+ hud/otel/processors.py,sha256=-gGRbwifplcExDQBLfx_9tqWreDImULJNcENgO9q7VU,4700
93
93
  hud/otel/tests/__init__.py,sha256=VNJKBMaxTtbn7trW-1Ph50zCvCok_wTSGcI1HD6GOLA,43
94
94
  hud/otel/tests/test_processors.py,sha256=np0R4ssd9j6LJSJykJ5bNjl0POwNYNhgb7BqOZHwcMY,6778
95
95
  hud/server/__init__.py,sha256=8LUwgsXO8xiViWP7uImDwcOsWLu01r5F4r8U8qH3rSY,91
@@ -157,10 +157,10 @@ hud/utils/tests/test_init.py,sha256=2QLQSGgyP9wJhOvPCusm_zjJad0qApOZi1BXpxcdHXQ,
157
157
  hud/utils/tests/test_mcp.py,sha256=0pUa16mL-bqbZDXp5NHBnt1gO5o10BOg7zTMHZ1DNPM,4023
158
158
  hud/utils/tests/test_progress.py,sha256=QSF7Kpi03Ff_l3mAeqW9qs1nhK50j9vBiSobZq7T4f4,7394
159
159
  hud/utils/tests/test_telemetry.py,sha256=5jl7bEx8C8b-FfFUko5pf4UY-mPOR-9HaeL98dGtVHM,2781
160
- hud/utils/tests/test_version.py,sha256=-u0egMJ2Q8IPrenCiVP8k2f_n7BSBRB2tYFGdbUwWrM,160
160
+ hud/utils/tests/test_version.py,sha256=Ur5o4UVJbPy4rYJUIc3yBCTK-mk9CAf_7bHv2qSPJEI,160
161
161
  hud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- hud_python-0.4.17.dist-info/METADATA,sha256=z3k06ixt6r41EDxaHYtbwILpjU1Z5QVxiQ6Jwfu-BWs,20287
163
- hud_python-0.4.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
164
- hud_python-0.4.17.dist-info/entry_points.txt,sha256=jJbodNFg1m0-CDofe5AHvB4zKBq7sSdP97-ohaQ3ae4,63
165
- hud_python-0.4.17.dist-info/licenses/LICENSE,sha256=yIzBheVUf86FC1bztAcr7RYWWNxyd3B-UJQ3uddg1HA,1078
166
- hud_python-0.4.17.dist-info/RECORD,,
162
+ hud_python-0.4.18.dist-info/METADATA,sha256=vvUR4EBJmH6WqrLg2OxsupIJLs_6S8aVPaCRJjN3sJI,20287
163
+ hud_python-0.4.18.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
164
+ hud_python-0.4.18.dist-info/entry_points.txt,sha256=jJbodNFg1m0-CDofe5AHvB4zKBq7sSdP97-ohaQ3ae4,63
165
+ hud_python-0.4.18.dist-info/licenses/LICENSE,sha256=yIzBheVUf86FC1bztAcr7RYWWNxyd3B-UJQ3uddg1HA,1078
166
+ hud_python-0.4.18.dist-info/RECORD,,