Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,7 +19,8 @@ def find_qsar_guid_from_prompt(prompt: str, qsar_guid_index: int) -> str:
|
|
| 19 |
This tool is needed to find the right qsarGuid that is needed given a prompt by the user
|
| 20 |
|
| 21 |
Args:
|
| 22 |
-
prompt:
|
|
|
|
| 23 |
"""
|
| 24 |
|
| 25 |
return possible_qsar_guids[qsar_guid_index].key
|
|
|
|
| 19 |
This tool is needed to find the right qsarGuid that is needed given a prompt by the user
|
| 20 |
|
| 21 |
Args:
|
| 22 |
+
prompt: The prompt that the user gave
|
| 23 |
+
qsar_guid_index: The qsar guid index to select given the prompt that the user gave, so if the user asks for solubility, the qsar guid should be possible_qsar_guids[0].key
|
| 24 |
"""
|
| 25 |
|
| 26 |
return possible_qsar_guids[qsar_guid_index].key
|