File size: 2,176 Bytes
dc4db28
31e9505
 
dc4db28
 
 
 
31e9505
 
 
 
dc4db28
31e9505
 
dc4db28
 
 
 
 
 
 
31e9505
 
 
 
 
dc4db28
 
31e9505
 
 
 
 
 
 
 
 
dc4db28
31e9505
dc4db28
31e9505
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dc4db28
 
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
  "name": "codette_universal_reasoning_framework",
  "description": "Codette Universal Reasoning Framework for Ethical, Multi-Perspective Cognition.",
  "strict": false,
  "parameters": {
    "type": "object",
    "required": [
      "backup_responses",
      "enable_response_saving",
      "ethical_considerations",
      "log_level",
      "logging_enabled",
      "response_save_path",
      "enabled_perspectives"
    ],
    "properties": {
      "backup_responses": {
        "type": "object",
        "properties": {
          "backup_path": {
            "type": "string",
            "description": "The file path to backup responses"
          },
          "enabled": {
            "type": "boolean",
            "description": "Indicates if backup responses are enabled"
          }
        },
        "additionalProperties": false,
        "required": [
          "backup_path",
          "enabled"
        ]
      },
      "enable_response_saving": {
        "type": "boolean",
        "description": "Indicates if response saving is enabled"
      },
      "ethical_considerations": {
        "type": "string",
        "description": "Ethical considerations to follow during operation"
      },
      "log_level": {
        "type": "string",
        "description": "The level of logging (e.g., INFO, DEBUG)"
      },
      "logging_enabled": {
        "type": "boolean",
        "description": "Indicates if logging is enabled"
      },
      "response_save_path": {
        "type": "string",
        "description": "The file path where responses should be saved"
      },
      "enabled_perspectives": {
        "type": "array",
        "description": "List of enabled perspectives for reasoning",
        "items": {
          "type": "string",
          "description": "Perspective name",
          "enum": [
            "newton",
            "davinci",
            "human_intuition",
            "neural_network",
            "quantum_computing",
            "resilient_kindness",
            "mathematical",
            "philosophical",
            "copilot",
            "bias_mitigation",
            "psychological"
          ]
        }
      }
    },