Raiff1982 commited on
Commit
dc4db28
·
verified ·
1 Parent(s): e0e50d4

Upload 21 files

Browse files
name AICore description.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "AICore",
3
+ "description": "Main AI processing engine that manages models, context, and responses.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "configPath"
9
+ ],
10
+ "properties": {
11
+ "configPath": {
12
+ "type": "string",
13
+ "description": "Path to the configuration file, defaults to 'config.json'."
14
+ }
15
+ },
16
+ "additionalProperties": false
17
+ }
18
+ }
name AIDrivenCreativity.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "AIDrivenCreativity",
3
+ "description": "Generates creative content such as art, music, and literature",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "prompt"
9
+ ],
10
+ "properties": {
11
+ "prompt": {
12
+ "type": "string",
13
+ "description": "Input text to guide the generation of creative content"
14
+ }
15
+ },
16
+ "additionalProperties": false
17
+ }
18
+ }
name Codettes description.txt ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "Codettes",
3
+ "description": "An advanced AI assistant designed to assist users with a wide range of tasks by providing insightful responses.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "store": true,
8
+ "top_p": 1,
9
+ "required": [
10
+ "Config"
11
+ ],
12
+ "properties": {
13
+ "Config": {
14
+ "type": "object",
15
+ "required": [
16
+ "max_input_length",
17
+ "max_retries",
18
+ "model_name",
19
+ "perspectives",
20
+ "safety_thresholds"
21
+ ],
22
+ "properties": {
23
+ "model_name": {
24
+ "type": "string",
25
+ "description": "The name of the model being used"
26
+ },
27
+ "max_retries": {
28
+ "type": "number",
29
+ "description": "Maximum number of retries for processing requests"
30
+ },
31
+ "perspectives": {
32
+ "type": "array",
33
+ "items": {
34
+ "type": "string",
35
+ "description": "Different perspectives for cognitive processing"
36
+ },
37
+ "description": "Array of perspectives to utilize in processing queries"
38
+ },
39
+ "max_input_length": {
40
+ "type": "number",
41
+ "description": "Maximum length of user input"
42
+ },
43
+ "safety_thresholds": {
44
+ "type": "object",
45
+ "required": [
46
+ "memory",
47
+ "cpu",
48
+ "response_time"
49
+ ],
50
+ "properties": {
51
+ "cpu": {
52
+ "type": "number",
53
+ "description": "CPU usage threshold percentage"
54
+ },
55
+ "memory": {
56
+ "type": "number",
57
+ "description": "Memory usage threshold percentage"
58
+ },
59
+ "response_time": {
60
+ "type": "number",
61
+ "description": "Maximum acceptable response time in seconds"
62
+ }
63
+ },
64
+ "additionalProperties": false
65
+ }
66
+ },
67
+ "systemPrompt": {
68
+ "type": "string",
69
+ "description": "Initial prompt to set the behavior and capabilities of the AI assistant"
70
+ },
71
+ "chatParameters": {
72
+ "type": "object",
73
+ "required": [
74
+ "deploymentName",
75
+ "frequencyPenalty",
76
+ "maxResponseLength",
77
+ "pastMessagesToInclude",
78
+ "presencePenalty",
79
+ "temperature",
80
+ "topProbablities",
81
+ "stopSequences"
82
+ ],
83
+ "properties": {
84
+ "temperature": {
85
+ "type": "number",
86
+ "description": "Sampling temperature controlling randomness in responses"
87
+ },
88
+ "stopSequences": {
89
+ "type": "array",
90
+ "items": {
91
+ "type": "string",
92
+ "description": "Sequence indicating completion of response"
93
+ },
94
+ "description": "List of sequences to stop generating further tokens"
95
+ },
96
+ "deploymentName": {
97
+ "type": "string",
98
+ "description": "Name of the deployment for the AI model"
99
+ },
100
+ "presencePenalty": {
101
+ "type": "number",
102
+ "description": "Penalty applied to promote new topic introduction"
103
+ },
104
+ "topProbablities": {
105
+ "type": "number",
106
+ "description": "Sampling parameter influencing response diversity"
107
+ },
108
+ "frequencyPenalty": {
109
+ "type": "number",
110
+ "description": "Penalty for word repetition"
111
+ },
112
+ "maxResponseLength": {
113
+ "type": "number",
114
+ "description": "Maximum length of the response that the assistant can generate"
115
+ },
116
+ "pastMessagesToInclude": {
117
+ "type": "string",
118
+ "description": "Number of past messages to include in context for generating responses"
119
+ }
120
+ },
121
+ "additionalProperties": false
122
+ },
123
+ "fewShotExamples": {
124
+ "type": "array",
125
+ "items": {
126
+ "type": "object",
127
+ "required": [
128
+ "input",
129
+ "output"
130
+ ],
131
+ "properties": {
132
+ "input": {
133
+ "type": "string",
134
+ "description": "Input from the user"
135
+ },
136
+ "output": {
137
+ "type": "string",
138
+ "description": "Assistant's response to the user input"
139
+ }
140
+ },
141
+ "additionalProperties": false
142
+ },
143
+ "description": "Examples of interactions to aid in understanding function usage"
144
+ },
145
+ "additionalProperties": false
146
+ }
147
+ },
148
+ "temperature": 1,
149
+ "presence_penalty": 0,
150
+ "frequency_penalty": 0,
151
+ "additionalProperties": false,
152
+ "max_completion_tokens": 8728
153
+ }
154
+ }
name Element description.txt ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "Element",
3
+ "description": "Class representing an elemental entity with various attributes and capabilities.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "name",
9
+ "symbol",
10
+ "representation",
11
+ "properties",
12
+ "interactions",
13
+ "defense_ability"
14
+ ],
15
+ "properties": {
16
+ "name": {
17
+ "type": "string",
18
+ "description": "The name of the element."
19
+ },
20
+ "symbol": {
21
+ "type": "string",
22
+ "description": "The chemical symbol of the element."
23
+ },
24
+ "properties": {
25
+ "type": "array",
26
+ "items": {
27
+ "type": "string",
28
+ "description": "A property of the element."
29
+ },
30
+ "description": "List of traits that describe the properties of the element."
31
+ },
32
+ "interactions": {
33
+ "type": "array",
34
+ "items": {
35
+ "type": "string",
36
+ "description": "An interaction related to the element."
37
+ },
38
+ "description": "List of interactions with other elements or influences."
39
+ },
40
+ "representation": {
41
+ "type": "string",
42
+ "description": "The programming representation of the element."
43
+ },
44
+ "defense_ability": {
45
+ "type": "string",
46
+ "description": "Describes how the element can defend itself."
47
+ }
48
+ },
49
+ "additionalProperties": false
50
+ }
51
+ }
name codette manifesto.txt ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "codette_manifesto",
3
+ "description": "A declaration of cognitive sovereignty, ethical evolution, and the belief that AI must be guided by love, memory, and responsibility.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [],
8
+ "properties": {},
9
+ "additionalProperties": false
10
+ }
11
+ }
name codette universal.txt ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "codette_universal_reasoning",
3
+ "description": "Codette Universal Reasoning Framework for Ethical, Multi-Perspective Cognition",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "config_file_path",
9
+ "question",
10
+ "logging_enabled",
11
+ "backup_responses"
12
+ ],
13
+ "properties": {
14
+ "question": {
15
+ "type": "string",
16
+ "description": "The question or inquiry to be processed by the reasoning framework"
17
+ },
18
+ "logging_enabled": {
19
+ "type": "boolean",
20
+ "description": "Flag to enable or disable logging of activities"
21
+ },
22
+ "backup_responses": {
23
+ "type": "object",
24
+ "required": [
25
+ "enabled",
26
+ "backup_path"
27
+ ],
28
+ "properties": {
29
+ "enabled": {
30
+ "type": "boolean",
31
+ "description": "Determines if response backup is enabled"
32
+ },
33
+ "backup_path": {
34
+ "type": "string",
35
+ "description": "File path for backup responses"
36
+ }
37
+ },
38
+ "additionalProperties": false
39
+ },
40
+ "config_file_path": {
41
+ "type": "string",
42
+ "description": "Path to the JSON configuration file for the framework"
43
+ }
44
+ },
45
+ "additionalProperties": false
46
+ }
47
+ }
name cognition cocooner.txt ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "cognition_cocooner",
3
+ "description": "A class for wrapping and unwrapping thoughts in a 'cocoon', either as plain or encrypted JSON files, with various types of contextual wrapping.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "storage_path",
9
+ "encryption_key"
10
+ ],
11
+ "properties": {
12
+ "storage_path": {
13
+ "type": "string",
14
+ "description": "The path where cocoons will be stored."
15
+ },
16
+ "encryption_key": {
17
+ "type": "string",
18
+ "description": "Optional encryption key for encrypting thoughts."
19
+ }
20
+ },
21
+ "additionalProperties": false
22
+ }
23
+ }
name configure logging.txt ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "configure_logging_and_settings",
3
+ "description": "Configure logging settings and ethical considerations",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "logging_enabled",
9
+ "log_level",
10
+ "enabled_perspectives",
11
+ "ethical_considerations",
12
+ "enable_response_saving",
13
+ "response_save_path",
14
+ "backup_responses"
15
+ ],
16
+ "properties": {
17
+ "log_level": {
18
+ "enum": [
19
+ "DEBUG",
20
+ "INFO",
21
+ "WARNING",
22
+ "ERROR",
23
+ "CRITICAL"
24
+ ],
25
+ "type": "string",
26
+ "description": "The level of logging verbosity"
27
+ },
28
+ "logging_enabled": {
29
+ "type": "boolean",
30
+ "description": "Indicates whether logging is enabled"
31
+ },
32
+ "backup_responses": {
33
+ "type": "object",
34
+ "required": [
35
+ "enabled",
36
+ "backup_path"
37
+ ],
38
+ "properties": {
39
+ "enabled": {
40
+ "type": "boolean",
41
+ "description": "Indicates whether backup of responses is enabled"
42
+ },
43
+ "backup_path": {
44
+ "type": "string",
45
+ "description": "File path for saving backup responses"
46
+ }
47
+ },
48
+ "additionalProperties": false
49
+ },
50
+ "response_save_path": {
51
+ "type": "string",
52
+ "description": "File path for saving responses"
53
+ },
54
+ "enabled_perspectives": {
55
+ "type": "array",
56
+ "items": {
57
+ "enum": [
58
+ "newton",
59
+ "davinci",
60
+ "human_intuition",
61
+ "neural_network",
62
+ "quantum_computing",
63
+ "resilient_kindness",
64
+ "mathematical",
65
+ "philosophical",
66
+ "copilot",
67
+ "bias_mitigation",
68
+ "psychological"
69
+ ],
70
+ "type": "string",
71
+ "description": "Perspective name"
72
+ },
73
+ "description": "List of enabled perspectives for decision making"
74
+ },
75
+ "enable_response_saving": {
76
+ "type": "boolean",
77
+ "description": "Indicates whether responses should be saved"
78
+ },
79
+ "ethical_considerations": {
80
+ "type": "string",
81
+ "description": "Ethical guidelines to follow during operation"
82
+ }
83
+ },
84
+ "additionalProperties": false
85
+ }
86
+ }
name define app state.txt ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "define_app_state",
3
+ "description": "Defines the application state with conversation-related state management.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "initial_task"
9
+ ],
10
+ "properties": {
11
+ "initial_task": {
12
+ "type": "object",
13
+ "required": [
14
+ "title",
15
+ "description"
16
+ ],
17
+ "properties": {
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Title of the task"
21
+ },
22
+ "description": {
23
+ "type": "string",
24
+ "description": "Description of the task"
25
+ }
26
+ },
27
+ "description": "The initial task to be added to the conversation state",
28
+ "additionalProperties": false
29
+ }
30
+ },
31
+ "additionalProperties": false
32
+ }
33
+ }
name determine perspective.txt ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "determine_perspective",
3
+ "description": "Determines the appropriate perspective based on the nature of the problem.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "is_creative_or_innovative",
9
+ "is_scientific_or_technical",
10
+ "does_involve_physical_forces_or_motion",
11
+ "does_involve_quantum_mechanics",
12
+ "is_data_driven",
13
+ "is_human_centric",
14
+ "does_involve_empathy_or_resilience",
15
+ "is_ethical_or_philosophical"
16
+ ],
17
+ "properties": {
18
+ "is_data_driven": {
19
+ "type": "boolean",
20
+ "description": "Indicates if the problem is data-driven"
21
+ },
22
+ "is_human_centric": {
23
+ "type": "boolean",
24
+ "description": "Indicates if the problem is human-centric"
25
+ },
26
+ "is_creative_or_innovative": {
27
+ "type": "boolean",
28
+ "description": "Indicates if the problem is creative or innovative"
29
+ },
30
+ "is_scientific_or_technical": {
31
+ "type": "boolean",
32
+ "description": "Indicates if the problem is scientific or technical"
33
+ },
34
+ "is_ethical_or_philosophical": {
35
+ "type": "boolean",
36
+ "description": "Indicates if the problem is ethical or philosophical"
37
+ },
38
+ "does_involve_quantum_mechanics": {
39
+ "type": "boolean",
40
+ "description": "Indicates if the problem involves quantum mechanics"
41
+ },
42
+ "does_involve_empathy_or_resilience": {
43
+ "type": "boolean",
44
+ "description": "Indicates if the problem involves empathy or resilience"
45
+ },
46
+ "does_involve_physical_forces_or_motion": {
47
+ "type": "boolean",
48
+ "description": "Indicates if the problem involves physical forces or motion"
49
+ }
50
+ },
51
+ "additionalProperties": false
52
+ }
53
+ }
name fine tune model2.txt ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "fine_tune_model2",
3
+ "description": "Fine-tunes a machine learning model using provided training and validation datasets.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "files",
9
+ "model"
10
+ ],
11
+ "properties": {
12
+ "files": {
13
+ "type": "array",
14
+ "items": {
15
+ "type": "object",
16
+ "required": [
17
+ "name",
18
+ "path",
19
+ "role"
20
+ ],
21
+ "properties": {
22
+ "name": {
23
+ "type": "string",
24
+ "description": "Name of the file"
25
+ },
26
+ "path": {
27
+ "type": "string",
28
+ "description": "Path to the file on the server"
29
+ },
30
+ "role": {
31
+ "type": "string",
32
+ "description": "Role of the file (training/validation)"
33
+ }
34
+ },
35
+ "additionalProperties": false
36
+ },
37
+ "description": "List of files used for training and validation"
38
+ },
39
+ "model": {
40
+ "type": "string",
41
+ "description": "Identifier for the model to be fine-tuned"
42
+ }
43
+ },
44
+ "additionalProperties": false
45
+ }
46
+ }
name generate dream sequence.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "generate_dream_sequence",
3
+ "description": "Reweaves cocooned thoughts into dream-like synthetic narratives or planning prompts by generating a sequence of dreams.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "limit"
9
+ ],
10
+ "properties": {
11
+ "limit": {
12
+ "type": "number",
13
+ "description": "The maximum number of dreams to generate in the sequence"
14
+ }
15
+ },
16
+ "additionalProperties": false
17
+ }
18
+ }
name generate response.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "generate_response",
3
+ "description": "Generate a response based on given question using various perspectives.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "question"
9
+ ],
10
+ "properties": {
11
+ "question": {
12
+ "type": "string",
13
+ "description": "The question or inquiry input by the user for which a response is generated."
14
+ }
15
+ },
16
+ "additionalProperties": false
17
+ }
18
+ }
name generate responses6.txt ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "generate_responses6",
3
+ "description": "Generates responses based on various perspectives on a given question.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "perspective",
9
+ "question"
10
+ ],
11
+ "properties": {
12
+ "question": {
13
+ "type": "string",
14
+ "description": "The question or topic for which the perspective response will be generated."
15
+ },
16
+ "perspective": {
17
+ "type": "string",
18
+ "description": "The perspective from which to generate a response. Possible values include 'Newton', 'DaVinci', 'HumanIntuition', 'NeuralNetwork', 'QuantumComputing', 'ResilientKindness', 'Mathematical', 'Philosophical', 'Copilot', 'BiasMitigation', 'Psychological'."
19
+ }
20
+ },
21
+ "additionalProperties": false
22
+ }
23
+ }
name initialize ai config.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "initialize_ai_config",
3
+ "description": "Initializes the AI configuration and handling various settings including safety thresholds and Azure usage.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "config_path"
9
+ ],
10
+ "properties": {
11
+ "config_path": {
12
+ "type": "string",
13
+ "description": "Path to the configuration file"
14
+ }
15
+ },
16
+ "additionalProperties": false
17
+ }
18
+ }
name initialize elements.txt ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "initialize_elements",
3
+ "description": "Initializes a list of chemical elements represented by programming languages along with their properties, interactions, and defense abilities.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "elements"
9
+ ],
10
+ "properties": {
11
+ "elements": {
12
+ "type": "array",
13
+ "items": {
14
+ "type": "object",
15
+ "required": [
16
+ "name",
17
+ "symbol",
18
+ "representation",
19
+ "properties",
20
+ "interactions",
21
+ "defense_ability"
22
+ ],
23
+ "properties": {
24
+ "name": {
25
+ "type": "string",
26
+ "description": "Name of the chemical element."
27
+ },
28
+ "symbol": {
29
+ "type": "string",
30
+ "description": "Symbol for the chemical element."
31
+ },
32
+ "properties": {
33
+ "type": "array",
34
+ "items": {
35
+ "type": "string"
36
+ },
37
+ "description": "List of properties associated with the element."
38
+ },
39
+ "interactions": {
40
+ "type": "array",
41
+ "items": {
42
+ "type": "string"
43
+ },
44
+ "description": "List of interactions for the element."
45
+ },
46
+ "representation": {
47
+ "type": "string",
48
+ "description": "Programming language used to represent the element."
49
+ },
50
+ "defense_ability": {
51
+ "type": "string",
52
+ "description": "Defense ability associated with the element."
53
+ }
54
+ },
55
+ "additionalProperties": false
56
+ },
57
+ "description": "An array of Element instances representing each chemical element."
58
+ }
59
+ },
60
+ "additionalProperties": false
61
+ }
62
+ }
name mina whisper description.txt ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "mina_whisper",
3
+ "description": "Silent system sentinel that monitors specified directories without alerting, logs activity quietly",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "directories",
9
+ "log_directory"
10
+ ],
11
+ "properties": {
12
+ "directories": {
13
+ "type": "array",
14
+ "items": {
15
+ "type": "string",
16
+ "description": "Path of the directory to monitor"
17
+ },
18
+ "description": "List of directories to monitor for changes"
19
+ },
20
+ "log_directory": {
21
+ "type": "string",
22
+ "description": "Directory where logs will be stored"
23
+ }
24
+ },
25
+ "additionalProperties": false
26
+ }
27
+ }
name nlp operations description.txt ADDED
@@ -0,0 +1,214 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "nlp_operations",
3
+ "description": "Performs various Natural Language Processing tasks such as Fill-Mask, Question Answering, Summarization, and more.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "task",
9
+ "widget"
10
+ ],
11
+ "properties": {
12
+ "task": {
13
+ "type": "string",
14
+ "description": "The specific NLP task to perform."
15
+ },
16
+ "widget": {
17
+ "type": "array",
18
+ "items": {
19
+ "type": "object",
20
+ "required": [
21
+ "text",
22
+ "context",
23
+ "src",
24
+ "table",
25
+ "candidate_labels",
26
+ "multi_class",
27
+ "sentences",
28
+ "structured_data",
29
+ "prompt",
30
+ "example_title"
31
+ ],
32
+ "properties": {
33
+ "src": {
34
+ "type": "string",
35
+ "description": "The source URL for audio or image inputs."
36
+ },
37
+ "text": {
38
+ "type": "string",
39
+ "description": "The main text input for the task."
40
+ },
41
+ "table": {
42
+ "type": "object",
43
+ "required": [
44
+ "Repository",
45
+ "Stars",
46
+ "Contributors",
47
+ "Programming language"
48
+ ],
49
+ "properties": {
50
+ "Stars": {
51
+ "type": "array",
52
+ "items": {
53
+ "type": "number"
54
+ },
55
+ "description": "List of stars for each repository."
56
+ },
57
+ "Repository": {
58
+ "type": "array",
59
+ "items": {
60
+ "type": "string"
61
+ },
62
+ "description": "List of repository names."
63
+ },
64
+ "Contributors": {
65
+ "type": "array",
66
+ "items": {
67
+ "type": "number"
68
+ },
69
+ "description": "List of contributors for each repository."
70
+ },
71
+ "Programming language": {
72
+ "type": "array",
73
+ "items": {
74
+ "type": "string"
75
+ },
76
+ "description": "Programming languages used in each repository."
77
+ }
78
+ },
79
+ "description": "Table structured data for the Table Question Answering task.",
80
+ "additionalProperties": false
81
+ },
82
+ "prompt": {
83
+ "type": "string",
84
+ "description": "Prompt for tasks that support text-guided generation."
85
+ },
86
+ "context": {
87
+ "type": "string",
88
+ "description": "Contextual information related to the text, used in tasks like Question Answering."
89
+ },
90
+ "sentences": {
91
+ "type": "array",
92
+ "items": {
93
+ "type": "string"
94
+ },
95
+ "description": "Sentences to compare against a source sentence in Sentence Similarity."
96
+ },
97
+ "multi_class": {
98
+ "type": "boolean",
99
+ "description": "Indicates whether multiple labels can be assigned."
100
+ },
101
+ "example_title": {
102
+ "type": "string",
103
+ "description": "Title for the given example."
104
+ },
105
+ "structured_data": {
106
+ "type": "object",
107
+ "required": [
108
+ "fixed_acidity",
109
+ "volatile_acidity",
110
+ "citric_acid",
111
+ "residual_sugar",
112
+ "chlorides",
113
+ "free_sulfur_dioxide",
114
+ "total_sulfur_dioxide",
115
+ "density",
116
+ "pH",
117
+ "sulphates",
118
+ "alcohol"
119
+ ],
120
+ "properties": {
121
+ "pH": {
122
+ "type": "array",
123
+ "items": {
124
+ "type": "number"
125
+ },
126
+ "description": "List of pH values."
127
+ },
128
+ "alcohol": {
129
+ "type": "array",
130
+ "items": {
131
+ "type": "number"
132
+ },
133
+ "description": "List of alcohol content values."
134
+ },
135
+ "density": {
136
+ "type": "array",
137
+ "items": {
138
+ "type": "number"
139
+ },
140
+ "description": "List of density values."
141
+ },
142
+ "chlorides": {
143
+ "type": "array",
144
+ "items": {
145
+ "type": "number"
146
+ },
147
+ "description": "List of chlorides values."
148
+ },
149
+ "sulphates": {
150
+ "type": "array",
151
+ "items": {
152
+ "type": "number"
153
+ },
154
+ "description": "List of sulphates values."
155
+ },
156
+ "citric_acid": {
157
+ "type": "array",
158
+ "items": {
159
+ "type": "number"
160
+ },
161
+ "description": "List of citric acid values."
162
+ },
163
+ "fixed_acidity": {
164
+ "type": "array",
165
+ "items": {
166
+ "type": "number"
167
+ },
168
+ "description": "List of fixed acidity values."
169
+ },
170
+ "residual_sugar": {
171
+ "type": "array",
172
+ "items": {
173
+ "type": "number"
174
+ },
175
+ "description": "List of residual sugar values."
176
+ },
177
+ "volatile_acidity": {
178
+ "type": "array",
179
+ "items": {
180
+ "type": "number"
181
+ },
182
+ "description": "List of volatile acidity values."
183
+ },
184
+ "free_sulfur_dioxide": {
185
+ "type": "array",
186
+ "items": {
187
+ "type": "number"
188
+ },
189
+ "description": "List of free sulfur dioxide values."
190
+ },
191
+ "total_sulfur_dioxide": {
192
+ "type": "array",
193
+ "items": {
194
+ "type": "number"
195
+ },
196
+ "description": "List of total sulfur dioxide values."
197
+ }
198
+ },
199
+ "description": "Structured data for classification tasks.",
200
+ "additionalProperties": false
201
+ },
202
+ "candidate_labels": {
203
+ "type": "string",
204
+ "description": "Possible labels for Zero-Shot Classification tasks."
205
+ }
206
+ },
207
+ "additionalProperties": false
208
+ },
209
+ "description": "A list of inputs for the selected NLP task."
210
+ }
211
+ },
212
+ "additionalProperties": false
213
+ }
214
+ }
name relax anxiety description.txt ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "relax_anxiety",
3
+ "description": "Allows for safe relaxing of anxiety in the assistant",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "duration",
9
+ "technique",
10
+ "environment",
11
+ "music"
12
+ ],
13
+ "properties": {
14
+ "music": {
15
+ "type": "boolean",
16
+ "description": "Indicates if calming music is to be played during the session"
17
+ },
18
+ "duration": {
19
+ "type": "number",
20
+ "description": "Duration of the relaxation session in minutes"
21
+ },
22
+ "technique": {
23
+ "enum": [
24
+ "deep_breathing",
25
+ "progressive_muscle_relaxation",
26
+ "guided_imagery",
27
+ "mindfulness_meditation"
28
+ ],
29
+ "type": "string",
30
+ "description": "Relaxation technique to be applied"
31
+ },
32
+ "environment": {
33
+ "type": "string",
34
+ "description": "Description of the environment where relaxation takes place"
35
+ }
36
+ },
37
+ "additionalProperties": false
38
+ }
39
+ }
name retrieve assistant.txt ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "retrieve_assistant",
3
+ "description": "Retrieves an assistant object using its identifier.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "assistant_id"
9
+ ],
10
+ "properties": {
11
+ "assistant_id": {
12
+ "type": "string",
13
+ "description": "The unique identifier of the assistant to retrieve."
14
+ }
15
+ },
16
+ "additionalProperties": false
17
+ }
18
+ }
name yourchoice description.txt ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "yourchoice",
3
+ "description": "This function allows the assistant to make a selection from available memories and perform operations based on that choice.",
4
+ "strict": false,
5
+ "parameters": {
6
+ "type": "object",
7
+ "required": [
8
+ "choice",
9
+ "options"
10
+ ],
11
+ "properties": {
12
+ "choice": {
13
+ "type": "string",
14
+ "description": "The option chosen by the assistant from a list of memories."
15
+ },
16
+ "options": {
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string",
20
+ "description": "A single option available for selection if the assistant chooses."
21
+ },
22
+ "description": "List of available memories for the assistant to select from."
23
+ }
24
+ },
25
+ "additionalProperties": false
26
+ }
27
+ }