What are you trying to achieve?
Hi there, I have been battling with this issue for a few days now and need your help.
I am a newbie and start to get my head around Make and Retell AI inbound agent.
I created a Retell inbound agent that checks an Airtable base for properties.
The results are filtered by the parameters from the Retell call via JSON Payload.
{
“additional_properties”: false,
“type”: “object”,
“properties”: {
“bedrooms”: {
“type”: “integer”,
“description”: “The number of bedrooms in the property.”
},
“location”: {
“type”: “string”,
“description”: “The location of the property.”
},
“price”: {
“type”: “number”,
“description”: “The price of the property.”
},
“status”: {
“type”: “string”,
“description”: “The status of the property.”
}
},
“required”: [
“location”,
“status”,
“price”,
“bedrooms”
]
}
All seems to work and the output is correct as well on make.com.
However, the Retell LLM does not receive the output and can’t return the available property.
What am I doing wrong?
Any help is highly appreciated.
Warm regards,
Jan
Steps taken so far
I connected Make and Retell AI through web hook, transmit the JSON payload with requirements and filter values.
Set up the filter and Text aggregator and get all relevant information on Make.com