Replies: 1 comment 1 reply
-
@anu43, if you post your code, package version number and environment, it will make it easier for others to help and identify specific improvement. Generally speaking, if you have a specific workflow and a deterministic sequence of steps in mind, it is better to not use Agents, but simply use workflows to chain your steps together. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a project that simulates a data science team. Different agents are responsible for distinct tasks, such as data reading, preprocessing, feature engineering, etc. The goal is to pass an updated dataset from one agent to the next during sequential interactions.
I've experimented with various approaches to have agents write to a specific folder in our Docker-based code execution environment. The idea was that if agents can read files, they should also be able to save them. However, despite specifying file-saving instructions in the system prompt and task descriptions, the agents have not persisted in any local files.
Has anyone successfully implemented local file persistence between sequential agent chats? Any insights or suggestions would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions