diff --git a/src/crewai_tools/tools/serply_api_tool/serply_job_search_tool.py b/src/crewai_tools/tools/serply_api_tool/serply_job_search_tool.py index 358e312c7..a69ff3de6 100644 --- a/src/crewai_tools/tools/serply_api_tool/serply_job_search_tool.py +++ b/src/crewai_tools/tools/serply_api_tool/serply_job_search_tool.py @@ -7,7 +7,7 @@ from crewai_tools.tools.rag.rag_tool import RagTool class SerplyJobSearchToolSchema(BaseModel): - """Input for Serply Scholar Search.""" + """Input for Job Search.""" search_query: str = Field(..., description="Mandatory search query you want to use to fetch jobs postings.") diff --git a/src/crewai_tools/tools/serply_api_tool/serply_scholar_search_tool.py b/src/crewai_tools/tools/serply_api_tool/serply_scholar_search_tool.py index 62c3bef7f..a37c36e5f 100644 --- a/src/crewai_tools/tools/serply_api_tool/serply_scholar_search_tool.py +++ b/src/crewai_tools/tools/serply_api_tool/serply_scholar_search_tool.py @@ -13,7 +13,7 @@ class SerplyScholarSearchToolSchema(BaseModel): class SerplyScholarSearchTool(BaseTool): name: str = "Scholar Search" - description: str = "A tool to perform News article search with a search_query." + description: str = "A tool to perform scholarly literature search with a search_query." args_schema: Type[BaseModel] = SerplyScholarSearchToolSchema search_url: str = "https://api.serply.io/v1/scholar/" hl: Optional[str] = "us" @@ -29,7 +29,7 @@ class SerplyScholarSearchTool(BaseTool): """ param: hl (str): host Language code to display results in (reference https://developers.google.com/custom-search/docs/xml_results?hl=en#wsInterfaceLanguages) - proxy_location: (str): Where to get news, specifically for a specific country results. + proxy_location: (str): Specify the proxy location for the search, specifically for a specific country results. ['US', 'CA', 'IE', 'GB', 'FR', 'DE', 'SE', 'IN', 'JP', 'KR', 'SG', 'AU', 'BR'] (defaults to US) """ super().__init__(**kwargs) diff --git a/src/crewai_tools/tools/serply_api_tool/serply_webpage_to_markdown_tool.py b/src/crewai_tools/tools/serply_api_tool/serply_webpage_to_markdown_tool.py index 27ffc54ce..5049826c5 100644 --- a/src/crewai_tools/tools/serply_api_tool/serply_webpage_to_markdown_tool.py +++ b/src/crewai_tools/tools/serply_api_tool/serply_webpage_to_markdown_tool.py @@ -6,7 +6,7 @@ from crewai_tools.tools.rag.rag_tool import RagTool class SerplyWebpageToMarkdownToolSchema(BaseModel): - """Input for Serply Scholar Search.""" + """Input for Serply Search.""" url: str = Field(..., description="Mandatory url you want to use to fetch and convert to markdown") @@ -24,7 +24,7 @@ class SerplyWebpageToMarkdownTool(RagTool): **kwargs ): """ - proxy_location: (str): Where to get news, specifically for a specific country results. + proxy_location: (str): Where to perform the search, specifically for a specific country results. ['US', 'CA', 'IE', 'GB', 'FR', 'DE', 'SE', 'IN', 'JP', 'KR', 'SG', 'AU', 'BR'] (defaults to US) """ super().__init__(**kwargs)