This commit is contained in:
Alina Ryan 2025-07-24 19:57:24 -04:00 committed by GitHub
commit fbf4a0141f
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,28 @@
# 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 llama_stack.providers.datatypes import Api, InlineProviderSpec, ProviderSpec
def available_providers() -> list[ProviderSpec]:
return [
InlineProviderSpec(
api=Api.synthetic_data_generation,
provider_type="inline::synthetic_data_kit",
pip_packages=[
"synthetic-data-kit",
"vllm",
"pydantic",
],
module="llama_stack.providers.inline.synthetic_data_generation.synthetic_data_kit_inline",
config_class="llama_stack.providers.inline.synthetic_data_generation.config.SyntheticDataKitConfig",
),
]