Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ActionSearchSource(BaseModel):
class ActionSearch(BaseModel):
"""Action type "search" - Performs a web search query."""

query: str
query: Optional[str] = None
Comment thread
brianstrauch marked this conversation as resolved.
"""[DEPRECATED] The search query."""

type: Literal["search"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ActionSearchSource(TypedDict, total=False):
class ActionSearch(TypedDict, total=False):
"""Action type "search" - Performs a web search query."""

query: Required[str]
query: str
"""[DEPRECATED] The search query."""

type: Required[Literal["search"]]
Expand Down
Loading