File size: 622 Bytes
3ad7017 | 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 |
---
## 📄 2️⃣ config.json
**Create file:** `config.json`
```json
{
"model_type": "instruction_clarity_controller",
"task": "preexecution_instruction_clarity",
"languages": ["en", "id"],
"output_format": "json",
"output_labels": [
"VALID",
"AMBIGUOUS",
"CONTRADICTORY",
"INCOMPLETE",
"UNSAFE"
],
"confidence_range": [0.0, 1.0],
"inference_settings": {
"json_only": true,
"temperature": 0.0,
"max_tokens": 64
},
"intended_use": [
"humanoid_instruction_clarification",
"agent_interaction_control"
],
"license": "mit"
}
|