Bader Alabddan commited on
Commit
284539e
1 Parent(s): c79cc5f

Add model documentation

Browse files
Files changed (1) hide show
  1. README.md +14 -13
README.md CHANGED
@@ -1,38 +1,39 @@
1
  ---
2
  license: mit
3
  tags:
4
- - underwriting
5
- - risk-scoring
6
  - insurance
7
- - IFRS
8
- - decision-intelligence
9
  language:
10
  - en
 
11
  ---
12
 
13
- # Underwriting Risk Agent
14
 
15
  **Category:** Agentic Decision Intelligence
16
- **Domain:** Insurance Underwriting
17
- **Product:** [Auto Risk Score Engine](https://huggingface.co/spaces/bdr-ai-org/AutoRiskScoreEngine)
18
 
19
  > Built using [BDR Agent Factory v1](https://huggingface.co/spaces/bdr-ai-org/BDR-Agent-Factory)
20
 
21
  ## Model Description
22
 
23
- Underwriting Risk Agent segments policies for underwriting triage with IFRS-ready classification.
24
 
25
- **Key Achievement:** IFRS-compliant risk scoring for automated underwriting
26
 
27
  ## Decision Contract
28
 
29
  ### Outputs
30
  ```json
31
  {
32
- "risk_score": "0-100",
33
- "risk_band": "low | medium | high",
34
- "justification": "string",
35
- "ifrs_classification": "string"
36
  }
37
  ```
38
 
 
1
  ---
2
  license: mit
3
  tags:
4
+ - RAG
5
+ - knowledge-management
6
  - insurance
7
+ - policy-documents
8
+ - question-answering
9
  language:
10
  - en
11
+ pipeline_tag: question-answering
12
  ---
13
 
14
+ # Insurance Knowledge Agent
15
 
16
  **Category:** Agentic Decision Intelligence
17
+ **Domain:** Insurance Knowledge Management
18
+ **Product:** [Insurance Knowledge Agent](https://huggingface.co/spaces/bdr-ai-org/InsuranceKnowledgeAgent)
19
 
20
  > Built using [BDR Agent Factory v1](https://huggingface.co/spaces/bdr-ai-org/BDR-Agent-Factory)
21
 
22
  ## Model Description
23
 
24
+ Insurance Knowledge Agent resolves policy, endorsement, and clause conflicts using RAG.
25
 
26
+ **Key Achievement:** RAG-powered decision pipelines for policy intelligence
27
 
28
  ## Decision Contract
29
 
30
  ### Outputs
31
  ```json
32
  {
33
+ "answer": "string",
34
+ "supporting_clauses": ["string"],
35
+ "confidence": "0.0-1.0",
36
+ "source_documents": ["string"]
37
  }
38
  ```
39