# 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. """Pydantic models for Providers API requests and responses. This module re-exports models from llama_stack_api.admin.models to ensure a single source of truth and avoid type conflicts. """ # Import and re-export shared models from admin from llama_stack_api.admin.models import ( InspectProviderRequest, ListProvidersResponse, ProviderInfo, ) __all__ = [ "ProviderInfo", "ListProvidersResponse", "InspectProviderRequest", ]