tooluniverse 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tooluniverse might be problematic. Click here for more details.
- tooluniverse/openfda_tool.py +1 -1
- tooluniverse-0.1.3.dist-info/LICENSE +21 -0
- {tooluniverse-0.1.1.dist-info → tooluniverse-0.1.3.dist-info}/METADATA +22 -6
- {tooluniverse-0.1.1.dist-info → tooluniverse-0.1.3.dist-info}/RECORD +6 -5
- {tooluniverse-0.1.1.dist-info → tooluniverse-0.1.3.dist-info}/WHEEL +1 -1
- {tooluniverse-0.1.1.dist-info → tooluniverse-0.1.3.dist-info}/top_level.txt +0 -0
tooluniverse/openfda_tool.py
CHANGED
|
@@ -390,7 +390,7 @@ class FDADrugLabelGetDrugGenericNameTool(FDADrugLabelTool):
|
|
|
390
390
|
}
|
|
391
391
|
|
|
392
392
|
|
|
393
|
-
from data.fda_drugs_with_brand_generic_names_for_tool import drug_list
|
|
393
|
+
from .data.fda_drugs_with_brand_generic_names_for_tool import drug_list
|
|
394
394
|
|
|
395
395
|
self.brand_to_generic = {drug['brand_name']: drug['generic_name'] for drug in drug_list}
|
|
396
396
|
self.generic_to_brand = {drug['generic_name']: drug['brand_name'] for drug in drug_list}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Artificial Intelligence for Medicine and Science @ Harvard
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: tooluniverse
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A collection of biomedical tools designed for use by Agentic AI.
|
|
5
5
|
Home-page: https://github.com/mims-harvard/TxAgent
|
|
6
6
|
Author: Shanghua Gao
|
|
7
7
|
Author-email: shanghuagao@gmail.com
|
|
8
8
|
Requires-Python: >=3.6
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
10
11
|
Requires-Dist: requests
|
|
11
12
|
Requires-Dist: numpy
|
|
12
|
-
Requires-Dist: graphql
|
|
13
13
|
Requires-Dist: graphql-core
|
|
14
14
|
|
|
15
15
|
# ToolUniverse
|
|
16
16
|
|
|
17
17
|
[](https://zitniklab.hms.harvard.edu/TxAgent)
|
|
18
|
-
[]()
|
|
18
|
+
[](https://arxiv.org/pdf/2503.10970)
|
|
19
|
+
[](https://pypi.org/project/txagent/)
|
|
20
20
|
[](https://pypi.org/project/tooluniverse/)
|
|
21
21
|
[](https://github.com/mims-harvard/TxAgent)
|
|
22
22
|
[](https://github.com/mims-harvard/ToolUniverse)
|
|
@@ -75,8 +75,7 @@ Requires-Dist: graphql-core
|
|
|
75
75
|
<span class="author-block">
|
|
76
76
|
<a href="https://zitniklab.hms.harvard.edu/" target="_blank"
|
|
77
77
|
>Marinka Zitnik</a
|
|
78
|
-
|
|
79
|
-
>
|
|
78
|
+
>
|
|
80
79
|
</div>
|
|
81
80
|
|
|
82
81
|
|
|
@@ -122,3 +121,20 @@ tooluni.load_tools()
|
|
|
122
121
|
query = {"name": "get_indications_by_drug_name", "arguments": {"drug_name": "KISUNLA"}}
|
|
123
122
|
tooluni.run(query)
|
|
124
123
|
```
|
|
124
|
+
## Citation
|
|
125
|
+
|
|
126
|
+
```
|
|
127
|
+
@misc{gao2025txagent,
|
|
128
|
+
title={TxAgent: An AI Agent for Therapeutic Reasoning Across a Universe of Tools},
|
|
129
|
+
author={Shanghua Gao and Richard Zhu and Zhenglun Kong and Ayush Noori and Xiaorui Su and Curtis Ginder and Theodoros Tsiligkaridis and Marinka Zitnik},
|
|
130
|
+
year={2025},
|
|
131
|
+
eprint={2503.10970},
|
|
132
|
+
archivePrefix={arXiv},
|
|
133
|
+
primaryClass={cs.AI},
|
|
134
|
+
url={https://arxiv.org/abs/2503.10970},
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
## Contact
|
|
139
|
+
If you have any questions or suggestions, please email [Shanghua Gao](mailto:shanghuagao@gmail.com) and [Marinka Zitnik](mailto:marinka@hms.harvard.edu).
|
|
140
|
+
|
|
@@ -2,7 +2,7 @@ tooluniverse/__init__.py,sha256=j44hf13WM50HQJRi7aloeTG6y6872wJtfX8ydsaiJFI,652
|
|
|
2
2
|
tooluniverse/base_tool.py,sha256=WMGgr02lhEsVzHgt7NIeynXQ2wZtu97yZI-lQWOSoSs,1145
|
|
3
3
|
tooluniverse/execute_function.py,sha256=CmA8AIfyolkcooASD2_3pXgF1BqESU5_VUqdHSYiM_M,10139
|
|
4
4
|
tooluniverse/graphql_tool.py,sha256=FpyP70ZiQkd031crECAhZ7CbXBor8x6S-n48VICnxVs,5086
|
|
5
|
-
tooluniverse/openfda_tool.py,sha256=
|
|
5
|
+
tooluniverse/openfda_tool.py,sha256=wSelkQiOn0hqMzoqflw3lOFnyT8a1q5A6hSc8YyOgx8,21018
|
|
6
6
|
tooluniverse/restful_tool.py,sha256=5HoTyCSd507D4Qjcqjd16o8Y4BFZ02Zm4cGuczIXWdw,4078
|
|
7
7
|
tooluniverse/utils.py,sha256=zh1IopojPBIJzK_8eGytTmWlPckluQQZTpiCQONw-pY,6416
|
|
8
8
|
tooluniverse/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -11,7 +11,8 @@ tooluniverse/data/fda_drugs_with_brand_generic_names_for_tool.py,sha256=Clb7kQpP
|
|
|
11
11
|
tooluniverse/data/monarch_tools.json,sha256=I5KvamNZRvkKBaKbM6Ypo333m-RejQhqScX8h-uket4,3567
|
|
12
12
|
tooluniverse/data/opentarget_tools.json,sha256=nNvl-vYqS8nLfyIvHO40Fsnx6HJxwInUuS0mrrh6xmY,66201
|
|
13
13
|
tooluniverse/data/special_tools.json,sha256=tOI0TFpdjZBEE5Af1Vc4CeXQ0gAkz39xho9hDVBYR70,1518
|
|
14
|
-
tooluniverse-0.1.
|
|
15
|
-
tooluniverse-0.1.
|
|
16
|
-
tooluniverse-0.1.
|
|
17
|
-
tooluniverse-0.1.
|
|
14
|
+
tooluniverse-0.1.3.dist-info/LICENSE,sha256=Unq9Y3buGL9J0vFop03FYZiVweytt1xdgLIh2n9ck2c,1115
|
|
15
|
+
tooluniverse-0.1.3.dist-info/METADATA,sha256=zx-hLNaex1UJcSD2LZlBFAL2Y5iUKRn_i1c1uhLKfxY,5198
|
|
16
|
+
tooluniverse-0.1.3.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
|
17
|
+
tooluniverse-0.1.3.dist-info/top_level.txt,sha256=zZ8YeCJ5FAkEwdd_mxsFtSCQMBDgBdxrrmHo3RNBiWs,13
|
|
18
|
+
tooluniverse-0.1.3.dist-info/RECORD,,
|
|
File without changes
|