Testing Pipelines

This commit is contained in:
Josh Knapp 2025-02-04 12:35:42 -08:00
parent d1d976645f
commit 1ab1571bf5

View File

@ -78,7 +78,11 @@ class Pipeline(FunctionCallingBlueprint):
return "Invalid equation"
def __init__(self):
pass
self.valves = self.Valves(
**{
"pipelines": ["pipeline-testmodel"], # Connect to all pipelines
}
)
# 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.