Billiam
02/20/2025, 4:30 PMBilliam
02/20/2025, 11:57 PMBilliam
02/20/2025, 11:58 PMBilliam
02/20/2025, 11:58 PMVapi
02/21/2025, 12:31 AMBilliam
02/21/2025, 2:23 PMBilliam
02/21/2025, 2:24 PMShubham Bajaj
02/24/2025, 6:46 AMjson
{
"members": [
// ... other valid members ...
{} // This empty member is problematic
]
}
This empty member object at the end of your squad members array should be removed. According to the validation rules.
Each member in the squad must be properly structured with either an assistantId
or assistant
property. Ensure all assistantDestinations reference valid assistant names that exist in your organization.
Here's how the end of your members array should look:
json
{
"members": [
// ... other members ...
{
"assistantId": "2de71f0b-f9a2-4d47-ba49-61d80781c4b8",
"assistantDestinations": [
// ... your destinations ...
]
}
],
"name": "Yoga Studio Front Desk vAssistant",
"membersOverrides": {
"firstMessageMode": "assistant-speaks-first-with-model-generated-message"
}
}
This should resolve both the creation and "Talk with" functionality issues you're experiencing.Billiam
02/25/2025, 2:38 PMBilliam
02/25/2025, 2:38 PM