feat: filter wildcard support

This commit is contained in:
Timothy J. Baek 2024-05-27 20:26:02 -07:00
parent 143cf7e18b
commit c9f2ff4181
2 changed files with 3 additions and 3 deletions

View File

@ -17,6 +17,7 @@ class Pipeline:
self.priority = 0
# List target pipelines (models) that this filter will be connected to.
# If you want to connect this filter to all pipelines, you can set pipelines to ["*"]
self.pipelines = [
{"id": "llama3:latest"},
]

View File

@ -21,9 +21,8 @@ class Pipeline:
self.priority = 0
# List target pipelines (models) that this filter will be connected to.
self.pipelines = [
{"id": "llama3:latest"},
]
# If you want to connect this filter to all pipelines, you can set pipelines to ["*"]
self.pipelines = ["*"]
self.secret_key = os.getenv("LANGFUSE_SECRET_KEY")
self.public_key = os.getenv("LANGFUSE_PUBLIC_KEY")