punitchauhan771

Results 15 comments of punitchauhan771

> > @FeelsDaumenMan , I ran into the same error and should be able to trace back the steps of how I resolved if with that error details. > >...

Hi @Tttjjjlll, I guess the issue is with the creation of crew, for hierarchical process based crew use this syntax: ``` crew = Crew( agents=[agents], tasks=[tasks], manager_llm = llm, #requires...

Hi you can refer to this issue https://github.com/joaomdmoura/crewAI/issues/105#issuecomment-2044883945 for an explanation of why this issue arises. Thanks

Hi @brunoreisportela, The comment only explains why this error arises, if you want to make embedding work with ollama embeddings models, you can't as of now the library used by...

``` crew = Crew( agents=[research_agent, summarize_agent], tasks=[task, task1], manager_llm=mistral, # Mandatory for hierarchical process process=Process.hierarchical, # Specifies the hierarchical management approach memory=True, max_rpm=2, function_calling_llm=mistral, verbose=2 ) ``` mark memory =...