Charles John
Charles John
@tomlynchRNA Created [this](https://github.com/rnadigital/agentcloud/commits/retrievers/) branch for this enhancement. The Retriever model with expected keys is [here](https://github.com/rnadigital/agentcloud/blob/787e88349bb90c97c8828f1cb8be2d4bc2c27d12/agent-backend/src/models/mongo.py#L74). I've also added more models with the expected config for each retriever type (subsequent lines)...
From a quick glance it seems like: - To be able to self-host, there's a dependency on `postgres`. That means we'll have to run 2 additional docker containers in our...
Try deleting all those extra "amp;"s in the Youtube URL. Seems to be a bug in Wagtail where the '&' in`&` gets escaped and generates extra `amp;`s while saving. Interestingly,...
Seems more like an enhancement and less of an issue to me. Also, one geared towards power users because it's not very intuitive. If users want to filter content by...
Additional feature requirements/recommendations: - A clear distinction between use-cases of sequential vs hierarchical. The crewAI [doc](https://docs.crewai.com/core-concepts/Processes/) on this is a perfect reference. - Sticking to the conventions described in the...
The problem I was trying to fix is of [AgentTools](https://github.com/crewAIInc/crewAI/blob/2fe79e68cde0067b56b8aaf5901cfa50f664238a/src/crewai/tools/agent_tools.py#L6) (`Delegate work to coworker` and `Ask question to coworker`) not being loaded because of being appended to the task in...
After going through the docs and code again, I realized that delegation is meant for only hierarchical processes and I was trying delegation with a sequential process. That's why it...