haripritamreddy

Results 14 comments of haripritamreddy

So There is same issue which is in langchain repo [here](https://github.com/langchain-ai/langchain/issues/9441) . The temporary resolve they found is using from `pydantic.v1 import BaseModel ` . And there is still same...

Thank you so much.It is working for me. But will It work for inbuilt langchain tools? Because for langchain tools we cannot specify the payload right

I have opened the same issue in #110 and this issue is from pydantic version that crewai is using. The issue is also ongoing in langchain.

Unlike langchain which can work with pydantic v1 and v2 crewai does not have this yet. I tried to install the oldest version of crewai 0.1.0 with pydantic 1.10.10 I...

@tkmerkel found a solution for it in the issue i opened. It has worked for me and it will work for you . ``` class SearchTools(): @tool("Search the internet") def...

No It is not working.Unlike function calling which is partially working It is giving altleast json output.But when i use tool calls with litellm its throwing erros. import autogen from...

Send the code here in which you are facing an error. You may have removed `print(result)` part of the code so you may not see the result or smh.

I have never used import crewai. Generally use `from crewai import Agent, Task, Crew, Process`

Yeah .I found it I don't know why this is an error but `# create tasks for the agents researcher_task = Task( description="""Review existing web application security standards and frameworks....