From 243269b6d02a8980588344f4046c16bc633008fb Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Tue, 4 Feb 2025 12:30:18 -0800 Subject: [PATCH] Testing Pipelines --- docker_pipeline.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docker_pipeline.py b/docker_pipeline.py index 11c1018..b3e090a 100644 --- a/docker_pipeline.py +++ b/docker_pipeline.py @@ -89,11 +89,10 @@ class Pipeline(FunctionCallingBlueprint): # The identifier must be unique across all pipelines. # The identifier must be an alphanumeric string that can include underscores or hyphens. It cannot contain spaces, special characters, slashes, or backslashes. # self.id = "my_tools_pipeline" - self.name = "My Tools Pipeline" + self.name = "Test Tool Pipeline" self.valves = self.Valves( - **{ - **self.valves.model_dump(), - "pipelines": ["pipeline-testmodel"], # Connect to all pipelines + { + "pipelines": ["pipeline-testmodel"], # Connect to specific Pipelines "OPENWEATHERMAP_API_KEY": os.getenv("OPENWEATHERMAP_API_KEY", ""), }, )