community[patch]: Add missing type annotations (#22758)

Add missing type annotations to objects in community.
These missing type annotations will raise type errors in pydantic 2.
This commit is contained in:
Eugene Yurtsev
2024-06-10 16:59:28 -04:00
committed by GitHub
parent 3237909221
commit 05d31a2f00
18 changed files with 37 additions and 37 deletions

View File

@@ -20,8 +20,8 @@ class YouInput(BaseModel):
class YouSearchTool(BaseTool):
"""Tool that searches the you.com API."""
name = "you_search"
description = (
name: str = "you_search"
description: str = (
"The YOU APIs make LLMs and search experiences more factual and"
"up to date with realtime web data."
)