AIRecommendedAction

Entity description

An AIRecommendedAction entity represents a recommended action based on AI analysis. It provides contextual insights and justifications for decision-making, along with confidence scoring.

Properties

NameDescriptionTypeExample
uidA unique identifier for the recommended actionstringact-456
actionThe type of action recommended (reply, estimate, schedule)stringreply
titleA brief, human-readable title summarizing the recommended actionstringFollow up with the client
reasonThe reason why this action is recommended, providing context for decision-makingstringUser needs clarification on pricing
payloadAdditional data related to the recommended action. The structure depends on the action typeobject{}
evidenceA list of supporting statements or facts justifying the recommendationarray["User asked for price estimate"]
confidenceA confidence score (0.0 - 1.0) indicating the AI's certainty about the recommendationnumber0.85
clickedIndicates whether the recommended action has been clickedbooleanfalse
fulfilledIndicates whether the recommended action has been completedbooleanfalse

Example

{
  "uid": "act-456",
  "action": "reply",
  "title": "Follow up with the client",
  "reason": "User needs clarification on pricing",
  "payload": {},
  "evidence": ["User asked for price estimate"],
  "confidence": 0.85,
  "clicked": false,
  "fulfilled": false
}