Values.AutomatedReasoningCheckTranslationSourceContains the logical translation of natural language input into formal logical statements, including premises, claims, and confidence scores.
type nonrec t = {premises : AutomatedReasoningLogicStatementList.t option;The logical statements that serve as the foundation or assumptions for the claims.
*)claims : AutomatedReasoningLogicStatementList.t option;The logical statements that are being validated against the premises and policy rules.
*)untranslatedPremises : AutomatedReasoningCheckInputTextReferenceList.t option;References to portions of the original input text that correspond to the premises but could not be fully translated.
*)untranslatedClaims : AutomatedReasoningCheckInputTextReferenceList.t option;References to portions of the original input text that correspond to the claims but could not be fully translated.
*)confidence : AutomatedReasoningCheckTranslationConfidence.t option;A confidence score between 0 and 1 indicating how certain the system is about the logical translation.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of AutomatedReasoningCheckTranslationConfidence.t
| `List of
[> `Structure of
(string
* [> `String of AutomatedReasoningLogicStatementContent.t ])
list ]
list ])
list ]