From b5af8ac901cbd62d44b4a6f265dbb22711c1217e Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 18 Aug 2025 16:52:30 -0700 Subject: [PATCH] try once more --- llama_stack/testing/inference_recorder.py | 2 +- tests/integration/agents/test_agents.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/llama_stack/testing/inference_recorder.py b/llama_stack/testing/inference_recorder.py index 478f77773..4a6958399 100644 --- a/llama_stack/testing/inference_recorder.py +++ b/llama_stack/testing/inference_recorder.py @@ -261,7 +261,7 @@ async def _patched_inference_method(original_method, self, client_type, endpoint else: raise RuntimeError( f"No recorded response found for request hash: {request_hash}\n" - f"Endpoint: {endpoint}\n" + f"Request: {method} {url} {body}\n" f"Model: {body.get('model', 'unknown')}\n" f"To record this response, run with LLAMA_STACK_INFERENCE_MODE=record" ) diff --git a/tests/integration/agents/test_agents.py b/tests/integration/agents/test_agents.py index 5baf33037..9121457d7 100644 --- a/tests/integration/agents/test_agents.py +++ b/tests/integration/agents/test_agents.py @@ -7,7 +7,6 @@ from typing import Any from uuid import uuid4 -import llama_stack_client as lsc_package import pytest import requests from llama_stack_client import Agent, AgentEventLogger, Document