crewAI icon indicating copy to clipboard operation
crewAI copied to clipboard

Framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.

Results 486 crewAI issues
Sort by recently updated
recently updated
newest added

HI team, can anyone please provide sample simple example which utilize CSV Rag and locall ollama. thanks in advance.

```python from flask import Flask, request, jsonify from crewai import Crew from textwrap import dedent from stock_analysis_agents import StockAnalysisAgents from stock_analysis_tasks import StockAnalysisTasks from dotenv import load_dotenv load_dotenv() app =...

Even when tooling is disabled the Agents code still expects function calling and expects that from the output of the llm. I use oobabooga as the local llm and it...

.Python.3.10_3.10.3056.0_x64__qbz5n2kfra8p0\lib\concurrent\futures\thread.py", line 169, in submit raise RuntimeError('cannot schedule new futures after ' RuntimeError: cannot schedule new futures after interpreter shutdown

Complementing the PR on https://github.com/joaomdmoura/crewAI-tools/pull/34

Hi! First of all, thank you for the gigantic work done. I'm trying to configure the agents (using Mistral 7B) to work with other languages, in particular russian. In version...

docxreader = Agent( role='docxreader', goal='', backstory="", verbose=True, allow_delegation=False, tools=[DirectoryReadTool, TXTSearchTool], llm=llm_gpt4, ) I dont want PersistentData,but it alway give me that 2024-05-16 17:05:32,417 - 14828 - local_persistent_hnsw.py-local_persistent_hnsw:271 - WARNING: Add...

Getting the following error when using llama3 through ollama. ``` /.venv/lib/python3.11/site-packages/requests/adapters.py", line 501, in send raise ConnectionError(err, request=request) requests.exceptions.ConnectionError: ('Connection aborted.', ConnectionResetError(54, 'Connection reset by peer')) ``` Here's my ModelFile...