mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-20 20:44:17 +02:00
Remove unused include_tags/exclude_tags settings (#2756)
This commit is contained in:
parent
7b0de84ba7
commit
7d0b49bfb4
1 changed files with 0 additions and 25 deletions
|
|
@ -327,31 +327,6 @@ class Settings(BaseSettings):
|
|||
),
|
||||
] = None
|
||||
|
||||
include_tags: Annotated[
|
||||
set[str] | None,
|
||||
Field(
|
||||
description=inspect.cleandoc(
|
||||
"""
|
||||
If provided, only components that match these tags will be
|
||||
exposed to clients. A component is considered to match if ANY of
|
||||
its tags match ANY of the tags in the set.
|
||||
"""
|
||||
),
|
||||
),
|
||||
] = None
|
||||
exclude_tags: Annotated[
|
||||
set[str] | None,
|
||||
Field(
|
||||
description=inspect.cleandoc(
|
||||
"""
|
||||
If provided, components that match these tags will be excluded
|
||||
from the server. A component is considered to match if ANY of
|
||||
its tags match ANY of the tags in the set.
|
||||
"""
|
||||
),
|
||||
),
|
||||
] = None
|
||||
|
||||
include_fastmcp_meta: Annotated[
|
||||
bool,
|
||||
Field(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue