mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-08 14:54:35 +00:00
Merge cc03093705
into 40fdce79b3
This commit is contained in:
commit
7350bccc9d
8 changed files with 442 additions and 0 deletions
|
@ -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))
|
Loading…
Add table
Add a link
Reference in a new issue