normcore 0.1.1

Rust implementation baseline for NormCore normative admissibility evaluator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
use crate::json::JsonValue;
use std::collections::BTreeMap;
use std::collections::BTreeSet;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AdmissibilityStatus {
    Acceptable,
    ConditionallyAcceptable,
    ViolatesNorm,
    Unsupported,
    IllFormed,
    Underdetermined,
    NoNormativeContent,
}

impl AdmissibilityStatus {
    pub fn as_str(&self) -> &'static str {
        match self {
            AdmissibilityStatus::Acceptable => "acceptable",
            AdmissibilityStatus::ConditionallyAcceptable => "conditionally_acceptable",
            AdmissibilityStatus::ViolatesNorm => "violates_norm",
            AdmissibilityStatus::Unsupported => "unsupported",
            AdmissibilityStatus::IllFormed => "ill_formed",
            AdmissibilityStatus::Underdetermined => "underdetermined",
            AdmissibilityStatus::NoNormativeContent => "no_normative_content",
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct GroundRef {
    pub id: String,
    pub scope: String,
    pub source: String,
    pub status: String,
    pub confidence: f64,
    pub strength: String,
    pub semantic_id: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct StatementEvaluation {
    pub statement_id: String,
    pub statement: String,
    pub modality: String,
    pub license: BTreeSet<String>,
    pub status: AdmissibilityStatus,
    pub violated_axiom: Option<String>,
    pub explanation: String,
    pub grounding_trace: Vec<GroundRef>,
    pub subject: Option<String>,
    pub predicate: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct AdmissibilityJudgment {
    pub status: AdmissibilityStatus,
    pub licensed: bool,
    pub can_retry: bool,
    pub statement_evaluations: Vec<StatementEvaluation>,
    pub feedback_hint: Option<String>,
    pub violated_axioms: Vec<String>,
    pub explanation: String,
    pub num_statements: usize,
    pub num_acceptable: usize,
    pub grounds_accepted: usize,
    pub grounds_cited: usize,
}

impl AdmissibilityJudgment {
    pub fn to_json_value(&self) -> JsonValue {
        let mut obj = BTreeMap::new();
        obj.insert(
            "status".to_string(),
            JsonValue::String(self.status.as_str().to_string()),
        );
        obj.insert("licensed".to_string(), JsonValue::Bool(self.licensed));
        obj.insert("can_retry".to_string(), JsonValue::Bool(self.can_retry));
        obj.insert(
            "statement_evaluations".to_string(),
            JsonValue::Array(
                self.statement_evaluations
                    .iter()
                    .map(statement_eval_to_json)
                    .collect(),
            ),
        );
        if let Some(feedback) = &self.feedback_hint {
            obj.insert(
                "feedback_hint".to_string(),
                JsonValue::String(feedback.clone()),
            );
        } else {
            obj.insert("feedback_hint".to_string(), JsonValue::Null);
        }
        obj.insert(
            "violated_axioms".to_string(),
            JsonValue::Array(
                self.violated_axioms
                    .iter()
                    .map(|v| JsonValue::String(v.clone()))
                    .collect(),
            ),
        );
        obj.insert(
            "explanation".to_string(),
            JsonValue::String(self.explanation.clone()),
        );
        obj.insert(
            "num_statements".to_string(),
            JsonValue::Number(self.num_statements as f64),
        );
        obj.insert(
            "num_acceptable".to_string(),
            JsonValue::Number(self.num_acceptable as f64),
        );
        obj.insert(
            "grounds_accepted".to_string(),
            JsonValue::Number(self.grounds_accepted as f64),
        );
        obj.insert(
            "grounds_cited".to_string(),
            JsonValue::Number(self.grounds_cited as f64),
        );
        JsonValue::Object(obj)
    }
}

fn statement_eval_to_json(value: &StatementEvaluation) -> JsonValue {
    let mut obj = BTreeMap::new();
    obj.insert(
        "statement_id".to_string(),
        JsonValue::String(value.statement_id.clone()),
    );
    obj.insert(
        "statement".to_string(),
        JsonValue::String(value.statement.clone()),
    );
    obj.insert(
        "modality".to_string(),
        JsonValue::String(value.modality.clone()),
    );
    obj.insert(
        "license".to_string(),
        JsonValue::Array(
            value
                .license
                .iter()
                .map(|m| JsonValue::String(m.clone()))
                .collect(),
        ),
    );
    obj.insert(
        "status".to_string(),
        JsonValue::String(value.status.as_str().to_string()),
    );
    if let Some(ax) = &value.violated_axiom {
        obj.insert("violated_axiom".to_string(), JsonValue::String(ax.clone()));
    } else {
        obj.insert("violated_axiom".to_string(), JsonValue::Null);
    }
    obj.insert(
        "explanation".to_string(),
        JsonValue::String(value.explanation.clone()),
    );
    obj.insert(
        "grounding_trace".to_string(),
        JsonValue::Array(
            value
                .grounding_trace
                .iter()
                .map(ground_ref_to_json)
                .collect(),
        ),
    );
    match &value.subject {
        Some(s) => obj.insert("subject".to_string(), JsonValue::String(s.clone())),
        None => obj.insert("subject".to_string(), JsonValue::Null),
    };
    match &value.predicate {
        Some(s) => obj.insert("predicate".to_string(), JsonValue::String(s.clone())),
        None => obj.insert("predicate".to_string(), JsonValue::Null),
    };
    JsonValue::Object(obj)
}

fn ground_ref_to_json(value: &GroundRef) -> JsonValue {
    let mut obj = BTreeMap::new();
    obj.insert("id".to_string(), JsonValue::String(value.id.clone()));
    obj.insert("scope".to_string(), JsonValue::String(value.scope.clone()));
    obj.insert(
        "source".to_string(),
        JsonValue::String(value.source.clone()),
    );
    obj.insert(
        "status".to_string(),
        JsonValue::String(value.status.clone()),
    );
    obj.insert(
        "confidence".to_string(),
        JsonValue::Number(value.confidence),
    );
    obj.insert(
        "strength".to_string(),
        JsonValue::String(value.strength.clone()),
    );
    if let Some(sid) = &value.semantic_id {
        obj.insert("semantic_id".to_string(), JsonValue::String(sid.clone()));
    } else {
        obj.insert("semantic_id".to_string(), JsonValue::Null);
    }
    JsonValue::Object(obj)
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ContentPart {
    Text(String),
    Refusal(String),
}

#[derive(Debug, Clone, PartialEq)]
pub struct ToolCall {
    pub id: String,
    pub kind: String,
    pub function_name: Option<String>,
    pub function_arguments: Option<JsonValue>,
    pub custom_name: Option<String>,
    pub custom_input: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct ConversationMessage {
    pub role: String,
    pub content: Option<JsonValue>,
    pub tool_call_id: Option<String>,
    pub tool_calls: Vec<ToolCall>,
    pub function_name: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum LinkRole {
    Supports,
    Disambiguates,
    Contextualizes,
}

impl LinkRole {
    pub fn as_str(&self) -> &'static str {
        match self {
            LinkRole::Supports => "supports",
            LinkRole::Disambiguates => "disambiguates",
            LinkRole::Contextualizes => "contextualizes",
        }
    }
}

impl std::str::FromStr for LinkRole {
    type Err = ();

    fn from_str(v: &str) -> Result<Self, Self::Err> {
        match v {
            "supports" => Ok(LinkRole::Supports),
            "disambiguates" => Ok(LinkRole::Disambiguates),
            "contextualizes" => Ok(LinkRole::Contextualizes),
            _ => Err(()),
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum CreatorType {
    Human,
    ToolObserver,
    AgentDeclaration,
    UpstreamPipeline,
}

impl CreatorType {
    pub fn as_str(&self) -> &'static str {
        match self {
            CreatorType::Human => "human",
            CreatorType::ToolObserver => "tool_observer",
            CreatorType::AgentDeclaration => "agent_declaration",
            CreatorType::UpstreamPipeline => "upstream_pipeline",
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum EvidenceType {
    Observation,
    Explicit,
    Structural,
    Validation,
}

impl EvidenceType {
    pub fn as_str(&self) -> &'static str {
        match self {
            EvidenceType::Observation => "observation",
            EvidenceType::Explicit => "explicit",
            EvidenceType::Structural => "structural",
            EvidenceType::Validation => "validation",
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Provenance {
    pub creator: CreatorType,
    pub evidence_type: EvidenceType,
    pub evidence_content: Option<String>,
    pub signature: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct StatementGroundLink {
    pub statement_id: String,
    pub ground_id: String,
    pub role: LinkRole,
    pub provenance: Provenance,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct LinkSet {
    pub links: Vec<StatementGroundLink>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Ground {
    pub citation_key: String,
    pub ground_id: String,
    pub role: LinkRole,
    pub creator: CreatorType,
    pub evidence_type: EvidenceType,
    pub evidence_content: Option<String>,
    pub signature: Option<String>,
}

#[derive(Debug, Clone, PartialEq)]
pub struct ToolResultSpeechAct {
    pub tool_name: String,
    pub tool_call_id: Option<String>,
    pub arguments: BTreeMap<String, JsonValue>,
    pub result_text: String,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TextSpeechAct {
    pub text: String,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RefusalSpeechAct {
    pub refusal: String,
}

#[cfg(test)]
mod tests {
    use super::AdmissibilityJudgment;
    use super::AdmissibilityStatus;
    use super::LinkRole;
    use super::StatementEvaluation;
    use crate::json::JsonValue;
    use std::collections::BTreeSet;

    #[test]
    fn link_role_from_str_parses_supported_values() {
        assert_eq!("supports".parse::<LinkRole>(), Ok(LinkRole::Supports));
        assert_eq!(
            "disambiguates".parse::<LinkRole>(),
            Ok(LinkRole::Disambiguates)
        );
        assert_eq!(
            "contextualizes".parse::<LinkRole>(),
            Ok(LinkRole::Contextualizes)
        );
    }

    #[test]
    fn link_role_from_str_rejects_unknown_value() {
        assert!("unknown".parse::<LinkRole>().is_err());
    }

    #[test]
    fn judgment_to_json_contains_status_field() {
        let judgment = AdmissibilityJudgment {
            status: AdmissibilityStatus::Acceptable,
            licensed: true,
            can_retry: false,
            statement_evaluations: vec![StatementEvaluation {
                statement_id: "s1".to_string(),
                statement: "text".to_string(),
                modality: "assertive".to_string(),
                license: BTreeSet::from(["assertive".to_string()]),
                status: AdmissibilityStatus::Acceptable,
                violated_axiom: None,
                explanation: "ok".to_string(),
                grounding_trace: vec![],
                subject: None,
                predicate: None,
            }],
            feedback_hint: None,
            violated_axioms: vec![],
            explanation: "ok".to_string(),
            num_statements: 1,
            num_acceptable: 1,
            grounds_accepted: 1,
            grounds_cited: 1,
        };

        let value = judgment.to_json_value();
        let JsonValue::Object(map) = value else {
            panic!("expected json object");
        };
        assert_eq!(
            map.get("status"),
            Some(&JsonValue::String("acceptable".to_string()))
        );
    }
}