windowshopr

Results 85 comments of windowshopr

@theCyberTech Issue persists: ``` Successfully installed crewai-0.30.0rc6 crewai-tools-0.2.3 PS I:\nasty\Python_Projects\LLM\CrewAI\DevelopersOnlyTeam> python main.py C:\Users\chalu\AppData\Local\Programs\Python\Python311\Lib\site-packages\langchain\_api\module_import.py:87: LangChainDeprecationWarning: Importing GuardrailsOutputParser from langchain.output_parsers is deprecated. Please replace the import with the following: from langchain_community.output_parsers.rail_parser import...

Same issue: ``` #... # TOOLS # Project Manager proj_manager_dir_tool = DirectoryLoader(path="./free_programming_books/project_manager", recursive=True, show_progress=True) proj_manager_website_tool = WebsiteSearchTool(website='https://www.google.ca/') proj_manager_youtube_tool = YoutubeVideoSearchTool() proj_manager_scrape_tool = ScrapeWebsiteTool() # proj_manager_github_tool = GithubSearchTool() # proj_manager_codedocs_tool =...

The same issue persists. It's a logic issue not a dependency issue.

Steps to continue debugging: `langchain > agents > agent.py` ``` @root_validator() def validate_tools(cls, values: Dict) -> Dict: """Validate that tools are compatible with agent.""" agent = values["agent"] # tools =...

Disregard my last, I've discovered that it's an issue with the `tools` parameter of the `Agent` class. When I comment out the list of `tools` in the Agent, the code...

Thank you! While your suggestion did not work exactly as expected, what I discovered was to NOT assign the list of tools during the class definition, but to only `append`...

Actually I spoke too soon. Doing that only delayed the same error until the `crew.kickoff()` call. It's still saying key error 'tools'. When I take out ALL tools from the...

Thanks, but that didn't work for me on my side. I'm running everything out of one file too, I tried your steps like the following, same error: ``` # TOOLS...

Cool! Thanks for the response. I would envision that a v1 of this upgrade would only target video tracks, ignoring text, animation, or any other track types. So we could...

Yeah I've got the same issue, trying to run `ollama/llama3` model on Windows 10, Python 3.11 ``` │ I:\nasty\Python_Projects\LLM\gpt_migrate\gpt_migrate\main.py:100 in main │ │ │ │ 97 │ │ │ file_name...