crewAI-tools icon indicating copy to clipboard operation
crewAI-tools copied to clipboard

Extend the capabilities of your CrewAI agents with Tools

Results 183 crewAI-tools issues
Sort by recently updated
recently updated
newest added

Hey, just occurred to me that my last contribution had a bug. Have tested this fix on my machine.

self.description = f"A tool that can be used to semantic search a query the {json_path} JSON's content." changed {json} to {json_path}

In original code n_results is always None so you always get only 10 results from Serper. With this change, when you explicitly set the n_results parameter when creating a SerperDevTool...

Currently the RAG base class composes with the official OpenAI Python Package. It is desirable to instead only use the calling convention of OpenAI. This allows for using Local LLMs...

The only tool I can get to work is SerperDevTool. Other tools like ScrapeWebsiteTool and WebsiteSearchTool do not work. I've tried running the tool_instance directly and running it from within...

``object_researcher: role: > Attribute Researcher goal: > Gather all of the attributes of an object for the purpose of generating a profile: - components - states - direct actions it...

https://github.com/joaomdmoura/crewAI-tools/blob/9181d05c4c8bd8771bf01fb74ada5ca3f687c37e/crewai_tools/tools/selenium_scraping_tool/selenium_scraping_tool.py#L58-L60 The function is called without iterating before it is called again and iterated upon. Not sure if there is are reason to have such a redundant pattern. It doesn't...

"**_It seems we encountered an unexpected error while trying to use the tool. This was the error: 'OPENAI_API_KEY'_**" I got this message while trying to use tools. Can you please...

It looks like crewai-tools is corrupt on the pypi site. `pip install crewai-tools ` does not install the "add" method on in embedchain_adapter.py. Installing directly from github solves the problem:...

## Overview This pull request introduces an enhancement to the `FileReadTool` within our `crewai_tools` package, focusing on improving the robustness and user experience when reading files. Previously, an unhandled exception...