# 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 pydantic import BaseModel from llama_stack.apis.inference import Inference from .config import GroqConfig class GroqProviderDataValidator(BaseModel): groq_api_key: str async def get_adapter_impl(config: GroqConfig, _deps) -> Inference: # import dynamically so the import is used only when it is needed from .groq import GroqInferenceAdapter if not isinstance(config, GroqConfig): raise RuntimeError(f"Unexpected config type: {type(config)}") adapter = GroqInferenceAdapter(config) return adapter