From f48e129880ec7a87b41bd99d571cb70511ce1cc3 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Sat, 20 Sep 2025 18:04:51 -0400 Subject: [PATCH] chore: remove duplicate AnthropicProviderDataValidator --- .../providers/remote/inference/anthropic/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/llama_stack/providers/remote/inference/anthropic/__init__.py b/llama_stack/providers/remote/inference/anthropic/__init__.py index 8b420a5a0..30d986808 100644 --- a/llama_stack/providers/remote/inference/anthropic/__init__.py +++ b/llama_stack/providers/remote/inference/anthropic/__init__.py @@ -4,15 +4,9 @@ # 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 .config import AnthropicConfig -class AnthropicProviderDataValidator(BaseModel): - anthropic_api_key: str | None = None - - async def get_adapter_impl(config: AnthropicConfig, _deps): from .anthropic import AnthropicInferenceAdapter