From e4324f488e9785ce33d905dfce6308b2022dbee1 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 23 Sep 2024 14:13:46 -0700 Subject: [PATCH] fix sample --- llama_stack/providers/adapters/agents/sample/__init__.py | 2 ++ llama_stack/providers/adapters/inference/sample/__init__.py | 2 ++ llama_stack/providers/adapters/memory/sample/__init__.py | 2 ++ llama_stack/providers/adapters/safety/sample/__init__.py | 2 ++ llama_stack/providers/adapters/telemetry/sample/__init__.py | 2 ++ 5 files changed, 10 insertions(+) diff --git a/llama_stack/providers/adapters/agents/sample/__init__.py b/llama_stack/providers/adapters/agents/sample/__init__.py index 38e0dc2d5..94456d98b 100644 --- a/llama_stack/providers/adapters/agents/sample/__init__.py +++ b/llama_stack/providers/adapters/agents/sample/__init__.py @@ -4,6 +4,8 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. +from typing import Any + from .config import SampleConfig diff --git a/llama_stack/providers/adapters/inference/sample/__init__.py b/llama_stack/providers/adapters/inference/sample/__init__.py index d40858e8d..13263744e 100644 --- a/llama_stack/providers/adapters/inference/sample/__init__.py +++ b/llama_stack/providers/adapters/inference/sample/__init__.py @@ -4,6 +4,8 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. +from typing import Any + from .config import SampleConfig diff --git a/llama_stack/providers/adapters/memory/sample/__init__.py b/llama_stack/providers/adapters/memory/sample/__init__.py index f139863d7..c9accdf62 100644 --- a/llama_stack/providers/adapters/memory/sample/__init__.py +++ b/llama_stack/providers/adapters/memory/sample/__init__.py @@ -4,6 +4,8 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. +from typing import Any + from .config import SampleConfig diff --git a/llama_stack/providers/adapters/safety/sample/__init__.py b/llama_stack/providers/adapters/safety/sample/__init__.py index 5a701133b..83a8d0890 100644 --- a/llama_stack/providers/adapters/safety/sample/__init__.py +++ b/llama_stack/providers/adapters/safety/sample/__init__.py @@ -4,6 +4,8 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. +from typing import Any + from .config import SampleConfig diff --git a/llama_stack/providers/adapters/telemetry/sample/__init__.py b/llama_stack/providers/adapters/telemetry/sample/__init__.py index d5d0b9cf8..4fb27ac27 100644 --- a/llama_stack/providers/adapters/telemetry/sample/__init__.py +++ b/llama_stack/providers/adapters/telemetry/sample/__init__.py @@ -4,6 +4,8 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. +from typing import Any + from .config import SampleConfig