forked from codedidit/axiomprompting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCore.py
24 lines (24 loc) · 1.17 KB
/
Core.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CORE_PARAMETERS = {
"Precision": {
"Accuracy": ["high", "medium", "low", "scientifically accurate", "valid"],
"Relevance": ["direct", "indirect", "contextual", "aligned with the topic", "focused"],
"Specificity": ["detailed", "general", "specific", "focused explanation"]
},
"Depth": {
"Comprehensiveness": ["comprehensive", "basic", "intermediate", "broad", "extensive"],
"Nuance": ["nuanced", "general", "detailed"],
"Expertise": ["expert", "intermediate", "beginner", "high expertise", "domain-specific"]
},
"Insight": {
"Novel Perspectives": ["novel", "standard", "innovative", "creative", "fresh perspective"],
"Pattern Recognition": ["pattern-focused", "general", "detailed", "identifying trends", "analytical"]
},
"Utility": {
"Actionable Value": ["actionable", "informative", "educational", "practical", "applied"],
"Practical Application": ["applicable", "theoretical", "practical", "real-world relevance"]
},
"Coherence": {
"Logical Flow": ["logical", "sequential", "structured"],
"Structural Integrity": ["cohesive", "fragmented", "organized"]
}
}