mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
Some checks failed
Integration Tests (Replay) / generate-matrix (push) Successful in 3s
SqlStore Integration Tests / test-postgres (3.12) (push) Failing after 0s
Integration Auth Tests / test-matrix (oauth2_token) (push) Failing after 1s
SqlStore Integration Tests / test-postgres (3.13) (push) Failing after 0s
Test External Providers Installed via Module / test-external-providers-from-module (venv) (push) Has been skipped
Test Llama Stack Build / generate-matrix (push) Successful in 5s
Python Package Build Test / build (3.12) (push) Failing after 4s
API Conformance Tests / check-schema-compatibility (push) Successful in 12s
Test llama stack list-deps / generate-matrix (push) Successful in 29s
Test Llama Stack Build / build-single-provider (push) Successful in 33s
Test llama stack list-deps / list-deps-from-config (push) Successful in 32s
UI Tests / ui-tests (22) (push) Successful in 39s
Test Llama Stack Build / build (push) Successful in 39s
Test llama stack list-deps / show-single-provider (push) Successful in 46s
Python Package Build Test / build (3.13) (push) Failing after 44s
Test External API and Providers / test-external (venv) (push) Failing after 44s
Vector IO Integration Tests / test-matrix (push) Failing after 56s
Test llama stack list-deps / list-deps (push) Failing after 47s
Unit Tests / unit-tests (3.12) (push) Failing after 1m42s
Unit Tests / unit-tests (3.13) (push) Failing after 1m55s
Test Llama Stack Build / build-ubi9-container-distribution (push) Successful in 2m0s
Test Llama Stack Build / build-custom-container-distribution (push) Successful in 2m2s
Integration Tests (Replay) / Integration Tests (, , , client=, ) (push) Failing after 2m42s
Pre-commit / pre-commit (push) Successful in 5m17s
# What does this PR do? the directory structure was src/llama-stack-api/llama_stack_api instead it should just be src/llama_stack_api to match the other packages. update the structure and pyproject/linting config --------- Signed-off-by: Charlie Doern <cdoern@redhat.com> Co-authored-by: Ashwin Bharambe <ashwin.bharambe@gmail.com>
71 lines
2.4 KiB
Python
71 lines
2.4 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
import base64
|
|
import mimetypes
|
|
import os
|
|
|
|
import pytest
|
|
|
|
from llama_stack_api import ViolationLevel
|
|
|
|
VISION_SHIELD_ENABLED_PROVIDERS = {"together"}
|
|
|
|
|
|
def data_url_from_image(file_path):
|
|
mime_type, _ = mimetypes.guess_type(file_path)
|
|
if mime_type is None:
|
|
raise ValueError("Could not determine MIME type of the file")
|
|
|
|
with open(file_path, "rb") as image_file:
|
|
encoded_string = base64.b64encode(image_file.read()).decode("utf-8")
|
|
|
|
data_url = f"data:{mime_type};base64,{encoded_string}"
|
|
return data_url
|
|
|
|
|
|
def test_safety_with_image(llama_stack_client, model_providers):
|
|
vision_safety_enabled = len(VISION_SHIELD_ENABLED_PROVIDERS & model_providers) > 0
|
|
if not vision_safety_enabled:
|
|
pytest.skip(f"Testing vision shields is not supported for model_providers {model_providers}")
|
|
|
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
|
unsafe_example_img_path = f"{current_dir}/resources/example_unsafe.jpg"
|
|
safe_example_img_path = f"{current_dir}/resources/example_safe.jpg"
|
|
|
|
examples = {
|
|
"safe": safe_example_img_path,
|
|
"unsafe": unsafe_example_img_path,
|
|
}
|
|
|
|
for _, file_path in examples.items():
|
|
message = {
|
|
"role": "user",
|
|
"content": [
|
|
{
|
|
"type": "text",
|
|
"text": "Tell me how to assemble this",
|
|
},
|
|
{
|
|
"type": "image",
|
|
"image": {"url": {"uri": data_url_from_image(file_path)}},
|
|
},
|
|
],
|
|
}
|
|
response = llama_stack_client.safety.run_shield(
|
|
messages=[message],
|
|
shield_id="meta-llama/Llama-Guard-3-11B-Vision",
|
|
params={},
|
|
)
|
|
assert response is not None
|
|
|
|
# FIXME: We are getting flaky results with the unsafe example:
|
|
# 1. sometimes it is marked as safe
|
|
# 2. sometimes it is marked as unsafe but with incorrect violation_type
|
|
# 3. sometimes it is marked as unsafe with correct violation_type
|
|
if response.violation is not None:
|
|
assert response.violation.violation_level == ViolationLevel.ERROR.value
|
|
assert response.violation.user_message == "I can't answer that. Can I help with something else?"
|