From 62211f478dc684af22d7c424d18b5ed48fb4e7ee Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 28 May 2024 18:26:18 -0700 Subject: [PATCH] chore: comment --- pipelines/examples/langfuse_filter_pipeline.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pipelines/examples/langfuse_filter_pipeline.py b/pipelines/examples/langfuse_filter_pipeline.py index 88667c4..f1c0336 100644 --- a/pipelines/examples/langfuse_filter_pipeline.py +++ b/pipelines/examples/langfuse_filter_pipeline.py @@ -24,6 +24,7 @@ class Pipeline: class Valves(BaseModel): # List target pipeline ids (models) that this filter will be connected to. # If you want to connect this filter to all pipelines, you can set pipelines to ["*"] + # e.g. ["llama3:latest", "gpt-3.5-turbo"] pipelines: List[str] = [] # Assign a priority level to the filter pipeline.