-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
274 lines (242 loc) · 10 KB
/
main.py
File metadata and controls
274 lines (242 loc) · 10 KB
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
# Import the libraries needed
# # # from tdc.benchmark_group import scdti_group
# # # from tdc.resource.pinnacle import PINNACLE
# # from pandas import DataFrame
# # import pandas as pd
# import os
from ai21 import AI21Client
from ai21.models.chat import ChatMessage, ToolMessage
from ai21.models.chat.function_tool_definition import FunctionToolDefinition
from ai21.models.chat.tool_defintions import ToolDefinition
from ai21.models.chat.tool_parameters import ToolParameters
from pinnacle import *
from primekg import *
from cell_annotation import *
import json
import queries
# Initialize the AI21 Jamba client
client = AI21Client(api_key=("E13ddoghRLczpStIvPDYIquXdUpGbsqs"))
# Tool definitions for AI21
def get_dti_dataset_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_dti_dataset",
description="Get the Drug Target Interaction (DTI) dataset.",
parameters=ToolParameters(
type="object",
properties={},
required=[]
)
)
)
def get_ctspec_protein_embed_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_ctspec_protein_embed",
description="Get cell-type specific protein embedding.",
parameters=ToolParameters(
type="object",
properties={
"cell": {"type": "string", "description": "Cell type"},
"protein": {"type": "string", "description": "Protein name"}
}
)
)
)
def is_target_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="is_target",
description="Check if a protein is a drug target in a specific cell type and disease.Returns a 1 if true and 0 if false",
parameters=ToolParameters(
type="object",
properties={
"cell": {"type": "string", "description": "Cell type"},
"protein": {"type": "string", "description": "Protein name"},
"disease": {"type": "string", "description": "Disease name"}
}
)
)
)
def get_all_drug_evidence_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_all_drug_evidence",
description="Retrieve all drugs interacting with proteins relevant to a disease.",
parameters=ToolParameters(
type="object",
properties={
"disease": {"type": "string", "description": "Disease name"}
}
)
)
)
def get_all_associated_targets_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_all_associated_targets",
description="Get all associated protein targets for a disease.",
parameters=ToolParameters(
type="object",
properties={
"disease": {"type": "string", "description": "Disease name"}
}
)
)
)
def get_disease_disease_associations_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_disease_disease_associations",
description="Retrieve disease-disease associations for a given disease.",
parameters=ToolParameters(
type="object",
properties={
"disease": {"type": "string", "description": "Disease name"}
}
)
)
)
def get_labels_from_evidence_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_labels_from_evidence",
description="Retrieve labels from evidence for a disease.",
parameters=ToolParameters(
type="object",
properties={
"disease": {"type": "string", "description": "Disease name"}
}
)
)
)
def get_cell_types_for_ra_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_cell_types_for_ra",
description="Get cell types containing protein targets for RA disease.",
parameters=ToolParameters(
type="object",
properties={},
required=[]
)
)
)
def get_cell_types_for_ibd_tool():
return ToolDefinition(
type="function",
function=FunctionToolDefinition(
name="get_cell_types_for_ibd",
description="Get cell types containing protein targets for IBD disease.",
parameters=ToolParameters(
type="object",
properties={},
required=[]
)
)
)
# Register the tools with Jamba
tools = [
get_dti_dataset_tool(),
get_ctspec_protein_embed_tool(),
is_target_tool(),
get_all_drug_evidence_tool(),
get_all_associated_targets_tool(),
get_disease_disease_associations_tool(),
get_labels_from_evidence_tool(),
get_cell_types_for_ibd_tool(),
get_cell_types_for_ra_tool()
]
# Process the tool calls for the AI21 API
def process_tool_calls(assistant_message):
tool_call_id_to_result = {}
tool_calls = assistant_message.tool_calls
if tool_calls:
for tool_call in tool_calls:
# Handle the is_target tool call
if tool_call.function.name == "is_target":
func_arguments = json.loads(tool_call.function.arguments)
cell = func_arguments.get("cell")
protein = func_arguments.get("protein")
disease = func_arguments.get("disease")
if cell and protein and disease:
result = is_target(cell, protein, disease)
tool_call_id_to_result[tool_call.id] = result
else:
print(f"Got unexpected arguments in function call - {func_arguments}")
# Handle the get_ctspec_protein_embed tool call
elif tool_call.function.name == "get_ctspec_protein_embed":
func_arguments = json.loads(tool_call.function.arguments)
cell = func_arguments.get("cell")
protein = func_arguments.get("protein")
if cell and protein:
result = get_ctspec_protein_embed(cell, protein)
tool_call_id_to_result[tool_call.id] = result
else:
print(f"Got unexpected arguments in function call - {func_arguments}")
# Handle the get_all_drug_evidence tool call
elif tool_call.function.name == "get_all_drug_evidence":
func_arguments = json.loads(tool_call.function.arguments)
disease = func_arguments.get("disease")
if disease:
result = get_all_drug_evidence(disease)
tool_call_id_to_result[tool_call.id] = result
else:
print(f"Got unexpected arguments in function call - {func_arguments}")
# Handle the get_all_associated_targets tool call
elif tool_call.function.name == "get_all_associated_targets":
func_arguments = json.loads(tool_call.function.arguments)
disease = func_arguments.get("disease")
if disease:
result = get_all_associated_targets(disease)
tool_call_id_to_result[tool_call.id] = result
else:
print(f"Got unexpected arguments in function call - {func_arguments}")
# Handle the get_disease_disease_associations tool call
elif tool_call.function.name == "get_disease_disease_associations":
func_arguments = json.loads(tool_call.function.arguments)
disease = func_arguments.get("disease")
if disease:
result = get_disease_disease_associations(disease)
tool_call_id_to_result[tool_call.id] = result
else:
print(f"Got unexpected arguments in function call - {func_arguments}")
# Handle the get_labels_from_evidence tool call
elif tool_call.function.name == "get_labels_from_evidence":
func_arguments = json.loads(tool_call.function.arguments)
disease = func_arguments.get("disease")
if disease:
result = get_labels_from_evidence(disease)
tool_call_id_to_result[tool_call.id] = result
else:
print(f"Got unexpected arguments in function call - {func_arguments}")
elif tool_call.function.name == "get_cell_types_for_ra":
tool_call_id_to_result[tool_call.id] = get_cell_types_for_ra()
elif tool_call.function.name == "get_cell_types_for_ibd":
tool_call_id_to_result[tool_call.id] = get_cell_types_for_ibd()
else:
print(f"Unexpected tool call found - {tool_call.function.name}")
return tool_call_id_to_result
# Initial response
messages = queries.messages
response = client.chat.completions.create(messages=messages, model="jamba-1.5-large", tools=tools)
assistant_message = response.choices[0].message
messages.append(assistant_message)
tool_call_id_to_result = process_tool_calls(assistant_message)
# Add tool results to messages
for tool_id_called, result in tool_call_id_to_result.items():
tool_message = ToolMessage(role="tool", tool_call_id=tool_id_called, content=str(result))
messages.append(tool_message)
# # Final response
response = client.chat.completions.create(messages=messages, model="jamba-1.5-large", tools=tools)
final_response = response.choices[0].message.content
print(final_response)
print(response)