Skip to content

Commit

Permalink
adding tag list back
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdurak committed Dec 16, 2024
1 parent 37d2f0c commit b6d37e1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/zenml/models/v2/base/scoped.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,11 @@ def apply_sorting(
class WorkspaceScopedTaggableFilter(WorkspaceScopedFilter):
"""Model to enable advanced scoping with workspace and tagging."""

FILTER_EXCLUDE_FIELDS: ClassVar[List[str]] = [
*WorkspaceScopedFilter.FILTER_EXCLUDE_FIELDS,
"tag",
]

tag: Optional[str] = Field(
description="Tag to apply to the filter query.", default=None
)
Expand Down

0 comments on commit b6d37e1

Please sign in to comment.