Ryan Kirby
Ryan Kirby
@mhr3 I'm getting Error: Invalid signature in zip file in your lib too. Any ideas?
How does one determine if it's a zip64?
Hrm. i was able to unzip on the mac. I will say i was able to use https://github.com/cthackers/adm-zip .. if that helps. I'm sorry i cannot provide the zip, but...
I would bet that was it.
> 1: Ensure ollama is installed and running, and is version 0.1.27 or higher: > > ``` > ps aux | grep ollama > ollama 1810 55.4 2.5 291658704 1663360...
> https://dev.to/timsar2/create-datepicker-by-tailwindcss-angular-3p8k Downside to that example is if you need to pick a year. :(. but kudos to that person for a working tailwind + angular datepicker from scratch. Yes,...
I'm also seeing this happen using CrewAI v0.1.32 (Python 3.11.8) from langchain_community.llms import Ollama mistral = Ollama(model="mistral") ... myagent = Agent( llm=mistral ...
A minor note: Making the switch to ScrapeWebsiteTool breaks anyone using local LLMs like Ollama configurations. One of the main reasons I appreciate these examples so much, are that the...
I am experiencing this on the streamlit.io deployment of my CrewAI (v0.36.1) app since they install `http://deb.debian.org/debian bullseye/main amd64 sqlite3 amd64 3.34.1-3`. I am running Python 3.12... and it doesn't...
Using a different model (mistral) and simple tool example... **(notice the Action and Action Input usage being incorrect)** ``` import os from crewai import Crew, Agent, Task from tools.calculator_tools import...