-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathllm_config.py
342 lines (313 loc) · 12.9 KB
/
llm_config.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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
#!/usr/bin/env python
# coding: utf-8
import json
import autogen
import openai
import os
import autogen
OpenAI_key='####'
######### OPENAI ###########
os.environ['OPENAI_API_KEY']=OpenAI_key
config_list = autogen.config_list_from_models(model_list=["gpt-4", "gpt-3.5-turbo", "gpt-3.5-turbo-16k"])
llm_config = {
#Generate functions config for the Tool
"functions":[
{
"name": "get_FASTA_from_name",
"description": "With a protein name as input, provides a FASTA sequence of amino acids.",
"parameters": {
"type": "object",
"properties": {
"protein_name": {
"type": "string",
"description": "Name of a protein.",
}
},
"required": ["protein_name"],
},
},
{
"name": "save_to_csv_file",
"description": "With a JSON dictionary as input, saves the data to a csv file with a provided name.",
"parameters": {
"type": "object",
"properties": {
"input_JSON_dictionary": {
"type": "string",
"description": "The input JSON dictionary.",
},
"output_csv_name": {
"type": "string",
"description": "The output name for the csv file.",
}
},
"required": ["input_JSON_dictionary", "output_csv_name"],
},
},
{
"name": "analyze_protein_structure",
"description": "Given the protein structure file as input, analyzes and returns \
the secondary structure of the protein. \
The function returns a JSON dictionary with % content of the 8 secondary structure types.\
The 8 secondary structures are ['H': alpha-helix], ['B': isolated beta bridge], ['E': Extended strand or beta-sheet]\
['G': 3-helix (3/10 helix)], ['I': 5 helix (pi-helix)], ['T': Hydrogen bonded turn], ['S': Bend], \
['P': Poly-proline helices] and ['-': None]\
",
"parameters": {
"type": "object",
"properties": {
"protein_structure": {
"type": "string",
"description": "Portein structure file.",
}
},
"required": ["protein_structure"],
},
},
{
"name": "calucalte_energy_from_seq",
"description": " Calculates the unfolding energy of a protein. The function requires the amino acid sequence of a protein structure ßin string format. ",
"parameters": {
"type": "object",
"properties": {
"sequence": {
"type": "string",
"description": "Amino acid sequence in single-letter FASTA code.",
},
},
"required": ["sequence"],
},
},
{
"name": "calucalte_force_from_seq",
"description": " Calculates the maximum unfolding force of a protein. The function requires the amino acid sequence of a protein structure \
in string format.",
"parameters": {
"type": "object",
"properties": {
"sequence": {
"type": "string",
"description": "Amino acid sequence in single-letter FASTA code.",
},
},
"required": ["sequence"],
},
},
{
"name": "calucalte_force_energy_from_seq",
"description": " Calculates the unfolding energy and maximum force of a protein. The function requires the amino acid sequence of a protein structure in string format. ",
"parameters": {
"type": "object",
"properties": {
"sequence": {
"type": "string",
"description": "Amino acid sequence in single-letter FASTA code.",
},
},
"required": ["sequence"],
},
},
{
"name": "generate_seq_from_energy",
"description": " Design a protein based on an input energy. The function requires an energy value \
in string format. Returns the Amino Acid sequence of the protein ",
"parameters": {
"type": "object",
"properties": {
"energy": {
"type": "string",
"description": "The energy of the protein.",
},
"temperature": {
"type": "string",
"description": "The temperature value used for generation of text from autoregressive model.",
}
},
"required": ["energy"],
},
},
{
"name": "fold_protein",
"description": "Fold a protein with required amino acid sequence which creates a protein structure file. The funtion alos returns the output protein sructure name.",
"parameters": {
"type": "object",
"properties": {
"sequence": {
"type": "string",
"description": "Amino acid sequence in single-letter FASTA code.",
},
"name": {
"type": "string",
"description": "Name of the folded output protein structure.",
}
},
"required": ["sequence", "name"],
},
},
{
"name": "query_DFT",
"description": "Calculate the energy of a molecule.",
"parameters": {
"type": "object",
"properties": {
"coordinates": {
"type": "string",
"description": "The coordinates of the molecule.",
}
},
"required": ["coordinates"],
},
},
{
"name": "retrieve_content",
"description": "An expert in retrieving knowledge about protein, their mechanical properties, structures, and PDB names.",
"parameters": {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Message to be used to retrieve detailed knowledge. ",
}
},
"required": ["message"],
},
},
{
"name": "coords_from_SMILES",
"description": "With a SMILES string as input, provides atom type and coordinates of a molecule.",
"parameters": {
"type": "object",
"properties": {
"SMILES": {
"type": "string",
"description": "SMILES string.",
}
},
"required": ["SMILES"],
},
},
{
"name": "design_protein_from_length",
"description": "With an optional caption and required length of the protein (number of amino acids) \
and a name as input, designs a new protein. Returns a PDB name and the amino acid sequence.",
"parameters": {
"type": "object",
"properties": {
"caption": {
"type": "string",
"description": "Caption that describes the protein that will be designed. Default is no caption, empty string.", },
"length": {
"type": "number",
"description": "Length of the protein to be designed.", },
"name": {
"type": "number",
"description": "Name of the protein to be saved.", },
"steps": {
"type": "number",
"description": "Number of sampling steps, default is 300.", },
},
"required": ["length", "name"],
},
},
{
"name": "design_protein_from_CATH",
"description": "With a required CATH_ANNOTATION domain (1 is mainly alpha, 2 is mainly beta, 3 is alpha beta) \
, required output protein name, and length of the protein (number of amino acids) as input, \
, designs a protein and creates a protein structure file. It returns the PDB file name and the amino acid sequence.",
"parameters": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the protein to be saved.", },
"CATH_ANNOTATION": {
"type": "string",
"description": "CATH_ANNOTATION that describes the protein CATH domain (1 is mainly alpha, 2 is mainly beta, 3 is alpha beta) that will be designed. Default is 2 (mainly beta).", },
"length": {
"type": "number",
"description": "Length of the protein to be designed.", },
"steps": {
"type": "number",
"description": "Number of sampling steps, default is 300.", },
},
"required": ["CATH_ANNOTATION", "length", "name"],
},
},
{
"name": "calc_protein_ANM",
"description": " With input of a protein structure file, calculates the frequencies of the first n_modes eigenmodes.",
"parameters": {
"type": "object",
"properties": {
"protein_structure": {
"type": "string",
"description": "Protein structure file", },
"n_modes": {
"type": "number",
"description": "Number of modes to be calculated.", },
"cutoff": {
"type": "number",
"description": "Cutoff for elastic network calculation.", },
},
"required": ["protein_structure"],
},
},
{
"name": "fetch_protein_structure_from_PDBID",
"description": " With input of a protein PDB id, fetches the protein structure file and stores it in the directory. \
It also returns the name of the file stored in the directory. \
The input must be a PDB id of the protein not a generated protein name.",
"parameters": {
"type": "object",
"properties": {
"PDB_id": {
"type": "string",
"description": "Protein PDB id.", },
},
"required": ["PDB_id"],
},
},
{
"name": "analyze_protein_CATH_from_PDBID",
"description": " With input of a protein PDB id, you collect info about the CATH domain or structure classification of the protein. \
The input must be a PDB id of the proteins not a generated protein name.",
"parameters": {
"type": "object",
"properties": {
"PDB_id": {
"type": "string",
"description": "Protein PDB id.", },
},
"required": ["PDB_id"],
},
},
{
"name": "analyze_protein_length_from_PDB",
"description": " With input of a protein PDB id or protein name, you give the length of the amino-acid sequence of the protein.",
"parameters": {
"type": "object",
"properties": {
"PDB_name": {
"type": "string",
"description": "Protein PDB id or name.", },
},
"required": ["PDB_name"],
},
},
{
"name": "analyze_protein_seq_from_PDB",
"description": " With input of a protein PDB id or protein name, you give the sequence of the amino-acid sequence of the protein.",
"parameters": {
"type": "object",
"properties": {
"PDB_name": {
"type": "string",
"description": "Protein PDB id or name.", },
},
"required": ["PDB_name"],
},
},
],
"config_list": config_list, # Assuming you have this defined elsewhere
# "request_timeout": 120,
}