mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 02:32:40 +00:00
fix
This commit is contained in:
parent
6d21da6e48
commit
12141a00e3
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ def test_image_chat_completion_non_streaming(llama_stack_client, vision_model_id
|
|||
)
|
||||
message_content = response.completion_message.content.lower().strip()
|
||||
assert len(message_content) > 0
|
||||
assert any([expected in message_content for expected in {"dog", "puppy", "pup"}])
|
||||
assert any(expected in message_content for expected in {"dog", "puppy", "pup"})
|
||||
|
||||
|
||||
def test_image_chat_completion_streaming(llama_stack_client, vision_model_id):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue