fix: update telemetry import path after module move

The telemetry module was moved from llama_stack.apis.telemetry to llama_stack.core.telemetry in PR #3919. This updates the import in the provider data routing test to use the new location.
This commit is contained in:
Ashwin Bharambe 2025-10-28 10:50:22 -07:00
parent 73f4762c65
commit 80f836a2ba

View file

@ -24,7 +24,7 @@ from llama_stack.apis.inference.inference import (
OpenAIChatCompletionUsage, OpenAIChatCompletionUsage,
OpenAIChoice, OpenAIChoice,
) )
from llama_stack.apis.telemetry.telemetry import MetricEvent from llama_stack.core.telemetry.telemetry import MetricEvent
class OpenAIChatCompletionWithMetrics(OpenAIChatCompletion): class OpenAIChatCompletionWithMetrics(OpenAIChatCompletion):