Currently in order to create a new agent, we get mistral.beta.agents.create().
The issue with this is that every time the app is run, a new agent with the same name is recreated.
To avoid that we have to create a migration script that locally persists a mapping between agent id and name by doing version management, to be able to update agents properly.
This process is too heavy and quite counter-intuitive.
Is there a way to simplify the agent creation?
SDK Version: 2.2.1
Currently in order to create a new agent, we get
mistral.beta.agents.create().The issue with this is that every time the app is run, a new agent with the same name is recreated.
To avoid that we have to create a migration script that locally persists a mapping between agent id and name by doing version management, to be able to update agents properly.
This process is too heavy and quite counter-intuitive.
Is there a way to simplify the agent creation?
SDK Version: 2.2.1