export interface TransferToAgentToolResultErrorModel {
    status?: "error";
    fromAgent: string;
    error: string;
}
