From d1d976645ff676092027841d61799b4d8e70316e Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Tue, 4 Feb 2025 12:34:08 -0800 Subject: [PATCH] Testing Pipelines --- docker_pipeline.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docker_pipeline.py b/docker_pipeline.py index 419fd20..0844293 100644 --- a/docker_pipeline.py +++ b/docker_pipeline.py @@ -8,11 +8,6 @@ from blueprints.function_calling_blueprint import Pipeline as FunctionCallingBlu class Pipeline(FunctionCallingBlueprint): - class Valves(FunctionCallingBlueprint.Valves): - # Add your custom parameters here - OPENWEATHERMAP_API_KEY: str = "" - pass - class Tools: def __init__(self, pipeline) -> None: self.pipeline = pipeline @@ -83,7 +78,7 @@ class Pipeline(FunctionCallingBlueprint): return "Invalid equation" def __init__(self): - super().__init__() + pass # Optionally, you can set the id and name of the pipeline. # Best practice is to not specify the id so that it can be automatically inferred from the filename, so that users can install multiple versions of the same pipeline. # The identifier must be unique across all pipelines.