@flyingemolga
When an assistant transfers to another member in the squad, the system prompt for the new assistant would typically be set according to the configuration for that specific member. The system prompt is not automatically appended; it is replaced with the prompt that is configured for the assistant that is now handling the query.
If you provide one assistant with definitions and their values, the next assistant would not inherently know this information unless it is supplied in the system prompt of that assistant as well, or the information is passed along through some form of state management or shared context.
In practice, to ensure continuity and context preservation across transfers, you would need to implement a mechanism to share relevant information between assistants. This could involve passing along a context object, updating a shared database, or including necessary information in the transfer request.