Bader Alabddan commited on
Commit 路
284539e
1
Parent(s): c79cc5f
Add model documentation
Browse files
README.md
CHANGED
|
@@ -1,38 +1,39 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
tags:
|
| 4 |
-
-
|
| 5 |
-
-
|
| 6 |
- insurance
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
language:
|
| 10 |
- en
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
**Category:** Agentic Decision Intelligence
|
| 16 |
-
**Domain:** Insurance
|
| 17 |
-
**Product:** [
|
| 18 |
|
| 19 |
> Built using [BDR Agent Factory v1](https://huggingface.co/spaces/bdr-ai-org/BDR-Agent-Factory)
|
| 20 |
|
| 21 |
## Model Description
|
| 22 |
|
| 23 |
-
|
| 24 |
|
| 25 |
-
**Key Achievement:**
|
| 26 |
|
| 27 |
## Decision Contract
|
| 28 |
|
| 29 |
### Outputs
|
| 30 |
```json
|
| 31 |
{
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"
|
| 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 |
|