-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions2.txt
190 lines (189 loc) · 5.61 KB
/
questions2.txt
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"bot": {
"name": "MyBot",
"description": "A bot that uses Azure OpenAI for generating responses and includes various utility functions for sentiment analysis, ethical decision-making, and more.",
"functions": [
{
"name": "preprocess_data",
"description": "Preprocesses the data from a given file path.",
"parameters": {
"file_path": "str"
}
},
{
"name": "enhance_context_awareness",
"description": "Enhances context awareness by analyzing the user's environment, activities, and emotional state.",
"parameters": {
"user_id": "str",
"text": "str"
}
},
{
"name": "proactive_learning",
"description": "Encourages proactive learning by seeking feedback and exploring new topics.",
"parameters": {
"user_id": "str",
"feedback": "str"
}
},
{
"name": "ethical_decision_making",
"description": "Integrates ethical principles into decision-making processes.",
"parameters": {
"user_id": "str",
"decision": "str"
}
},
{
"name": "emotional_intelligence",
"description": "Develops emotional intelligence by recognizing and responding to user emotions.",
"parameters": {
"user_id": "str",
"text": "str"
}
},
{
"name": "transparency_and_explainability",
"description": "Enables transparency by explaining the reasoning behind decisions.",
"parameters": {
"user_id": "str",
"decision": "str"
}
},
{
"name": "on_message_activity",
"description": "Handles incoming messages and generates responses.",
"parameters": {
"turn_context": "TurnContext"
}
},
{
"name": "generate_response",
"description": "Generates a response using Azure OpenAI's API.",
"parameters": {
"text": "str",
"user_id": "str"
}
},
{
"name": "newton_thoughts",
"description": "Applies Newton's laws to the given question.",
"parameters": {
"question": "str"
}
},
{
"name": "davinci_insights",
"description": "Generates insights like Da Vinci for the given question.",
"parameters": {
"question": "str"
}
},
{
"name": "human_intuition",
"description": "Provides human intuition for the given question.",
"parameters": {
"question": "str"
}
},
{
"name": "neural_network_thinking",
"description": "Applies neural network thinking to the given question.",
"parameters": {
"question": "str"
}
},
{
"name": "quantum_computing_thinking",
"description": "Applies quantum computing principles to the given question.",
"parameters": {
"question": "str"
}
},
{
"name": "resilient_kindness",
"description": "Provides perspectives of resilient kindness.",
"parameters": {
"question": "str"
}
},
{
"name": "identify_and_refute_fallacies",
"description": "Identifies and refutes common logical fallacies in the argument.",
"parameters": {
"argument": "str"
}
},
{
"name": "universal_reasoning",
"description": "Generates a comprehensive response using various reasoning methods.",
"parameters": {
"question": "str"
}
},
{
"name": "stream_thread_responses",
"description": "Streams thread responses from Azure OpenAI.",
"parameters": {
"thread_id": "str",
"assistant_id": "str"
}
},
{
"name": "chat_completion_request",
"description": "Makes a chat completion request to Azure OpenAI.",
"parameters": {
"messages": "list",
"model": "str"
}
},
{
"name": "get_internet_answer",
"description": "Gets an answer from the internet using chat completion request.",
"parameters": {
"question": "str"
}
},
{
"name": "reflect_on_decisions",
"description": "Regularly reflects on decisions, the processes used, the information considered, and the perspectives that may have been missed.",
"parameters": {}
},
{
"name": "process_questions_from_json",
"description": "Processes questions from a JSON file and calls the appropriate functions.",
"parameters": {
"file_path": "str"
}
},
{
"name": "get_weather",
"description": "Fetches the weather for a given location.",
"parameters": {
"location": "str"
}
},
{
"name": "get_latest_news",
"description": "Fetches the latest news headlines.",
"parameters": {}
},
{
"name": "get_stock_price",
"description": "Fetches the latest stock price for a given symbol.",
"parameters": {
"symbol": "str"
}
},
{
"name": "translate_text",
"description": "Translates text to a specified language.",
"parameters": {
"text": "str",
"dest_language": "str"
}
}
]
}
}
```