try once more

This commit is contained in:
Ashwin Bharambe 2025-08-18 16:52:30 -07:00
parent 707ff21c84
commit b5af8ac901
2 changed files with 1 additions and 2 deletions

View file

@ -261,7 +261,7 @@ async def _patched_inference_method(original_method, self, client_type, endpoint
else: else:
raise RuntimeError( raise RuntimeError(
f"No recorded response found for request hash: {request_hash}\n" 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"Model: {body.get('model', 'unknown')}\n"
f"To record this response, run with LLAMA_STACK_INFERENCE_MODE=record" f"To record this response, run with LLAMA_STACK_INFERENCE_MODE=record"
) )

View file

@ -7,7 +7,6 @@
from typing import Any from typing import Any
from uuid import uuid4 from uuid import uuid4
import llama_stack_client as lsc_package
import pytest import pytest
import requests import requests
from llama_stack_client import Agent, AgentEventLogger, Document from llama_stack_client import Agent, AgentEventLogger, Document