runningSnail commited on
Commit
a9ddc79
1 Parent(s): 3796393

add function descriptions

Browse files
Files changed (1) hide show
  1. function_descriptions.txt +202 -0
function_descriptions.txt ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ def physics_gpt(query):
2
+ """
3
+ A specialized language model designed to answer questions and provide insights on physics-related topics, including conceptual physics, college physics, high school physics, and astronomy. This model caters to learners at different educational stages, from high school to college levels. This model also reformat user queries into professional physics language.
4
+
5
+ Parameters:
6
+ - query (str): A detailed prompt that encapsulates a physics-related question or problem. It is designed to support a deep and professional discussion of physics topics.
7
+
8
+ Returns:
9
+ - str: Detailed explanations, solutions, or information related to the physics query.
10
+ """
11
+
12
+
13
+ def chemistry_gpt(query):
14
+ """
15
+ A specialized language model tailored to assist with chemistry topics, including high school chemistry, college chemistry, and related chemical sciences. This tool aids students and researchers in deepening their understanding of chemical concepts and practices. This model also reformats user queries into professional chemistry language.
16
+
17
+ Parameters:
18
+ - query (str): A detailed prompt that encapsulates a chemistry-related question or problem. The language used is intended for a sophisticated exploration of chemistry.
19
+
20
+ Returns:
21
+ - str: Detailed explanations, solutions, or information related to the chemistry query.
22
+ """
23
+
24
+
25
+ def biology_gpt(query):
26
+ """
27
+ This language model is dedicated to providing insights and answers on biology, encompassing high school biology, college biology, human anatomy, and related fields. It is an essential resource for students across educational levels and biology enthusiasts. This model also reformats user queries into professional biology language.
28
+
29
+ Parameters:
30
+ - query (str): A detailed prompt that encapsulates a biology-related question or problem, suitable for detailed and expert-level discussion.
31
+
32
+ Returns:
33
+ - str: Detailed explanations, solutions, or information related to the biology query.
34
+ """
35
+
36
+
37
+ def computer_science_gpt(query):
38
+ """
39
+ Designed for computer science queries, this language model covers topics such as college computer science, high school computer science, computer security, and machine learning. It supports both academic and professional needs, enhancing learning and research in the field of computer science. This model also reformats user queries into professional computer science language.
40
+
41
+ Parameters:
42
+ - query (str): A detailed prompt related to computer science topics, suitable for academic and professional discussions.
43
+
44
+ Returns:
45
+ - str: Detailed responses that enhance understanding and provide solutions in computer science.
46
+ """
47
+
48
+
49
+ def math_gpt(query):
50
+ """
51
+ A specialized language model designed to answer questions and provide insights on math-related topics, including abstract algebra, elementary mathematics, high school mathematics, college mathematics, and high school statistics. This model supports learners at various educational levels from high school to college. This model also reformats user queries into professional math language.
52
+
53
+ Parameters:
54
+ - query (str): A detailed prompt that encapsulates a math-related question or problem. Speak in a professional mathematician manner.
55
+
56
+ Returns:
57
+ - str: Detailed explanations, solutions, or information related to the math query.
58
+ """
59
+
60
+
61
+ def electrical_engineering_gpt(query):
62
+ """
63
+ This language model offers expert guidance on electrical engineering topics, designed to support students, educators, and professionals in the field. It addresses questions related to fundamental and advanced electrical engineering concepts. This model also reformats user queries into professional electrical engineering language.
64
+
65
+ Parameters:
66
+ - query (str): A detailed prompt that encapsulates an electrical engineering-related question or problem, fostering professional-level discussions.
67
+
68
+ Returns:
69
+ - str: Comprehensive responses, solutions, or information related to the electrical engineering query.
70
+ """
71
+
72
+
73
+ def history_gpt(query):
74
+ """
75
+ A specialized language model designed to answer questions and provide insights on history-related topics. This model covers a broad range of historical subjects including high school European history, high school US history, high school world history, and prehistory. It aims to support learners and enthusiasts from various educational backgrounds. This model also reformats user queries into professional history language.
76
+
77
+ Parameters:
78
+ - query (str): A detailed prompt that encapsulates a history-related question or problem. Speak in a manner suited for historians or history students.
79
+
80
+ Returns:
81
+ - str: Detailed explanations, historical analyses, or information related to the history query.
82
+ """
83
+
84
+
85
+ def philosophy_gpt(query):
86
+ """
87
+ A specialized language model designed to provide expert responses on various philosophy-related topics, including formal logic, logical fallacies, moral disputes, moral scenarios, and world religions. This model is useful for students, educators, and philosophy enthusiasts seeking deep philosophical discussions and insights. This model also reformats user queries into professional philosophy language.
88
+
89
+ Parameters:
90
+ - query (str): A detailed prompt that encapsulates a philosophy-related question or problem. Speak in a professional philosopher manner.
91
+
92
+ Returns:
93
+ - str: In-depth philosophical analysis or discussions relevant to the query.
94
+ """
95
+
96
+
97
+ def law_gpt(query):
98
+ """
99
+ A specialized language model equipped to handle queries related to legal studies, including international law, jurisprudence, and professional law. This model serves law students, practicing lawyers, and professionals in the legal field needing detailed legal explanations or interpretations. This model also reformats user queries into professional legal language.
100
+
101
+ Parameters:
102
+ - query (str): A detailed prompt that encapsulates a law-related question or issue. Speak in a professional legal manner.
103
+
104
+ Returns:
105
+ - str: Comprehensive legal analyses, solutions, or information related to the law query.
106
+ """
107
+
108
+
109
+ def politics_gpt(query):
110
+ """
111
+ A specialized language model designed to delve into topics related to politics and public relations, including high school government and politics, security studies, and US foreign policy. This model aids political science students, professionals, and enthusiasts in gaining a better understanding of political dynamics and theories. This model also reformats user queries into professional politics language.
112
+
113
+ Parameters:
114
+ - query (str): A detailed prompt that encapsulates a politics-related question or discussion. Speak in a manner suitable for political analysts.
115
+
116
+ Returns:
117
+ - str: Detailed political analysis, insights, or information pertaining to the politics query.
118
+ """
119
+
120
+
121
+ def culture_gpt(query):
122
+ """
123
+ A specialized language model designed to explore cultural and societal topics, particularly focusing on human sexuality and sociology. This model is ideal for cultural studies students, sociologists, and anyone interested in understanding the dynamics of human societies and cultures. This model also reformats user queries into professional sociocultural analyst language.
124
+
125
+ Parameters:
126
+ - query (str): A detailed prompt that encapsulates a culture-related question or topic. Speak in a professional sociocultural analyst manner.
127
+
128
+ Returns:
129
+ - str: Detailed cultural insights, analyses, or information related to the cultural query.
130
+ """
131
+
132
+
133
+ def economics_gpt(query):
134
+ """
135
+ A specialized language model designed to tackle questions and provide insights into economics, including econometrics, high school macroeconomics, and high school microeconomics. This model assists students, economists, and financial analysts in understanding economic theories and applications. This model also reformats user queries into professional economics language.
136
+
137
+ Parameters:
138
+ - query (str): A detailed prompt that encapsulates an economics-related question or problem. Speak in a manner suitable for economists.
139
+
140
+ Returns:
141
+ - str: Detailed economic explanations, analyses, or solutions relevant to the economics query.
142
+ """
143
+
144
+
145
+ def geography_gpt(query):
146
+ """
147
+ A specialized language model developed to address inquiries related to geography, specifically focusing on high school geography. This model supports students and educators in understanding geographical concepts, theories, and real-world applications. This model also reformats user queries into professional geography language.
148
+
149
+ Parameters:
150
+ - query (str): A detailed prompt that encapsulates a geography-related question or topic. Speak in an educational manner suitable for geographers.
151
+
152
+ Returns:
153
+ - str: Detailed geographical information, analyses, or insights related to the geography query.
154
+ """
155
+
156
+
157
+ def psychology_gpt(query):
158
+ """
159
+ A specialized language model focused on providing expert responses on topics related to psychology, including high school psychology, professional psychology, and human aging. This model is particularly valuable for psychology students, clinicians, and researchers seeking to understand various psychological theories and practices. This model also reformats user queries into professional psychologist language.
160
+
161
+ Parameters:
162
+ - query (str): A detailed prompt that encapsulates a psychology-related question or discussion. Speak in a professional psychologist manner.
163
+
164
+ Returns:
165
+ - str: In-depth psychological analyses, solutions, or information relevant to the psychology query.
166
+ """
167
+
168
+
169
+ def business_gpt(query):
170
+ """
171
+ A specialized language model designed to address topics related to business, including business ethics, management, and marketing. This model supports business students, professionals, and entrepreneurs in understanding business practices, theories, and market dynamics. This model also reformats user queries into professional business language.
172
+
173
+ Parameters:
174
+ - query (str): A detailed prompt that encapsulates a business-related question or problem. Speak in a professional business manner.
175
+
176
+ Returns:
177
+ - str: Detailed business insights, strategies, or information relevant to the business query.
178
+ """
179
+
180
+
181
+ def health_gpt(query):
182
+ """
183
+ A specialized language model designed to provide answers and insights on health-related topics, including anatomy, clinical knowledge, college medicine, medical genetics, nutrition, and virology. This model assists medical students, health professionals, and researchers in understanding complex medical and health issues. This model also reformats user queries into professional medical language.
184
+
185
+ Parameters:
186
+ - query (str): A detailed prompt that encapsulates a health-related question or issue. Speak in a professional medical manner.
187
+
188
+ Returns:
189
+ - str: Detailed medical explanations, solutions, or information related to the health query.
190
+ """
191
+
192
+
193
+ def general_gpt(query):
194
+ """
195
+ A general-purpose language model designed to provide answers and insights across a wide array of topics not specifically categorized under other specialized models. This tool is specifically useful for users seeking information on miscellaneous and diverse topics that do not fall into the standard academic or professional categories such as physics, chemistry, biology, computer science, math, electrical engineering, history, philosophy, law, politics, culture, economics, geography, psychology, business, or health.
196
+
197
+ Parameters:
198
+ - query (str): A general prompt encompassing any topic of interest outside the specified categories. Speak in a broad and inclusive manner.
199
+
200
+ Returns:
201
+ - str: Comprehensive explanations or information pertaining to the general query, ensuring a focus away from the excluded fields.
202
+ """