@ -123,7 +123,7 @@ export const personalAssistantAgent: Agent = {
},
}),
execute: async ({ min, max }: { min: number; max: number }) => {
execute: async ({ min = 0, max = 1 }: { min?: number; max?: number }) => {
return Math.random() * (max - min) + min;