Update README.md
Browse files
README.md
CHANGED
|
@@ -51,6 +51,29 @@ The model was finetuned on ~100,000 curated transcripts across different domanin
|
|
| 51 |
```
|
| 52 |

|
| 53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
- **Developed by:** RinggAI
|
| 55 |
- **License:** apache-2.0
|
| 56 |
- **Finetuned from model :** unsloth/Qwen2.5-1.5B-Instruct
|
|
|
|
| 51 |
```
|
| 52 |

|
| 53 |
|
| 54 |
+
|
| 55 |
+
Provide the below schema for best output:
|
| 56 |
+
```
|
| 57 |
+
response_schema = {
|
| 58 |
+
"type": "object",
|
| 59 |
+
"properties": {
|
| 60 |
+
"key_points": {
|
| 61 |
+
"type": "array",
|
| 62 |
+
"items": {"type": "string"},
|
| 63 |
+
"nullable": True,
|
| 64 |
+
},
|
| 65 |
+
"action_items": {
|
| 66 |
+
"type": "array",
|
| 67 |
+
"items": {"type": "string"},
|
| 68 |
+
"nullable": True,
|
| 69 |
+
},
|
| 70 |
+
"summary": {"type": "string"},
|
| 71 |
+
"classification": classification_schema,
|
| 72 |
+
},
|
| 73 |
+
"required": ["summary", "classification"],
|
| 74 |
+
}
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
- **Developed by:** RinggAI
|
| 78 |
- **License:** apache-2.0
|
| 79 |
- **Finetuned from model :** unsloth/Qwen2.5-1.5B-Instruct
|