forked from phoenix-oss/llama-stack-mirror
* init * working bedrock tests * bedrock test for inference fixes * use env vars for bedrock guardrail vars * add register in meta reference * use correct shield impl in meta ref * dont add together fixture * right naming * minor updates * improved registration flow * address feedback --------- Co-authored-by: Dinesh Yeduguru <dineshyv@fb.com>
23 lines
664 B
Python
23 lines
664 B
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.
|
|
|
|
from .config import SampleConfig
|
|
|
|
|
|
from llama_stack.apis.safety import * # noqa: F403
|
|
|
|
|
|
class SampleSafetyImpl(Safety):
|
|
def __init__(self, config: SampleConfig):
|
|
self.config = config
|
|
|
|
async def register_shield(self, shield: Shield) -> None:
|
|
# these are the safety shields the Llama Stack will use to route requests to this provider
|
|
# perform validation here if necessary
|
|
pass
|
|
|
|
async def initialize(self):
|
|
pass
|