Hi community. Could you have some
# general-english
s
Hi community. Could you have some problem with Structured Data ? I implement into my agent but there is N/a in result
k
Check that your analysisPlan includes a properly defined structuredDataSchema, a clear structuredDataPrompt, and correctly formatted JSON also test with transcripts and review webhook handling..
s
I made with default prompt given by Sahil : You are an expert data extractor. Extract structured data per the JSON Schema. DO NOT return anything except the structured data. Json Schema: {{schema}} Only respond with the JSON.
That's all prompt : You are an expert data extractor. Extract structured data per the JSON Schema. DO NOT return anything except the structured data. Json Schema: { "title": "Schéma de Données Structurées des Appels", "description": "Définit la structure des données pour les informations d'appel collectées.", "type": "object", "properties": { "timestamp": { "type": "string", "format": "date-time", "description": "Horodatage de l'appel au format ISO 8601 (ex: 2025-05-31T10:30:00Z)." }, "callerFullName": { "type": "string", "description": "Nom et prénom complets de l'appelant." }, "companyName": { "type": ["string", "null"], "description": "Nom de l'entreprise de l'appelant, si applicable. Peut être null si l'appelant est un particulier." }, "clientType": { "type": "string", "enum": ["ENTREPRISE", "PARTICULIER"], "description": "Catégorie de l'appelant : 'ENTREPRISE' ou 'PARTICULIER'." }, "callType": { "type": "string", "enum": ["VENTE", "DEVIS", "FACTURATION", "TECHNIQUE", "LIVRAISON", "AUTRE"], "description": "Type ou catégorie principale de la demande de l'appelant." }, "details": { "type": "string", "description": "Résumé bref et clair de la demande de l’appelant." }, "handling": { "type": "string", "description": "Actions prises ou mesures immédiates concernant l’appel." } }, "required": [ "timestamp", "callerFullName", "clientType", "callType", "details", "handling" ] } Only respond with the JSON.
k
Did it work?
s
No ! But i create "Property" in code. That functional now
2 Views