This commit is contained in:
Alina Ryan 2025-06-27 11:39:51 +02:00 committed by GitHub
commit 7350bccc9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 442 additions and 0 deletions

View file

@ -0,0 +1,19 @@
# 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.
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# SPDX-License-Identifier: MIT
from typing import cast
from llama_stack.apis.synthetic_data_generation import SyntheticDataGeneration
from llama_stack.providers.utils.resolver import get_provider_impl as _get_provider_impl
def get_provider_impl() -> SyntheticDataGeneration:
return cast(SyntheticDataGeneration, _get_provider_impl(SyntheticDataGeneration))