crewAI-examples
crewAI-examples copied to clipboard
A collection of examples that show how to use CrewAI framework to automate workflows.
Hello, CrewAI is a magnificent project, I am trying to make it work with as little dependence on online services as possible. So is it possible to replace the browserless...
I would like to contribute a blank starter template built using your examples. Hope it helps: https://github.com/sumitbindra/CrewAI
[/usr/local/lib/python3.10/dist-packages/pydantic/_internal/_core_utils.py](https://localhost:8080/#) in 14 from pydantic_core import CoreSchema, core_schema 15 from pydantic_core import validate_core_schema as _validate_core_schema ---> 16 from typing_extensions import TypeAliasType, TypeGuard, get_args, get_origin 17 18 from . import _repr...
using the latest commit [087b8ca](https://github.com/joaomdmoura/crewAI-examples/commit/087b8ca5c533ceca355d529be3dd7d77c0dac873) when I run with `microsoft`, I get the following error 2 errors: 1. the first one with `chunk size` is new as of today, 2....
I was running the trip planner with a local LM and got the following output: ``` > Finished chain. Task output: Agent stopped due to max iterations. ######################## ## Here...
On my first run after successfully installing everything i got this, and it kept coming no matter what company i asked for - Thought: Do I need to use a...
trying trip planner with ollama from langchain.llms import Ollama ollama_openhermes = Ollama(model="openhermes") sends me some non blocking error ``` > Entering new CrewAgentExecutor chain... Thought: Do I need to use...
Doing the stock example, and specified ollama for both agents. Looked like ti was working until it started telling me the results. and then.... ``` Entering new AgentExecutor chain... Traceback...
would this be a correct modelfile to use for ollama openhermes2.5-mistral? TEMPLATE """system {{ .System }} user {{ .Prompt }} assistant """ PARAMETER num_ctx 4096 PARAMETER top_p 0.5 PARAMETER temperature...
The [Detail & Explanation > Running the Script](https://github.com/joaomdmoura/crewAI-examples/blob/main/stock_analysis/README.md?plain=1#L30) for the `stock_analysis` is the same as the [Detail & Explanation > Running the Script](https://github.com/joaomdmoura/crewAI-examples/blob/main/landing_page_generator/README.md?plain=1#L35) of the `landing_page_generator`. This PR updates the...