aiagents4pharma 1.2.1__tar.gz → 1.3.0__tar.gz
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.
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/PKG-INFO +7 -1
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/ask_question.py +0 -22
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/model_description.py +0 -22
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma.egg-info/PKG-INFO +7 -1
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma.egg-info/requires.txt +6 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/pyproject.toml +7 -1
- aiagents4pharma-1.3.0/release_version.txt +1 -0
- aiagents4pharma-1.2.1/release_version.txt +0 -1
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/LICENSE +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/README.md +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/__init__.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/__init__.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/models/__init__.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/models/basico_model.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/models/sys_bio_model.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/__init__.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/custom_plotter.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/fetch_parameters.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/plot_figure.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/search_models.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/simulate_model.py +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma.egg-info/SOURCES.txt +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma.egg-info/dependency_links.txt +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma.egg-info/top_level.txt +0 -0
- {aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aiagents4pharma
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0
|
4
4
|
Summary: AI Agents for drug discovery, drug development, and other pharmaceutical R&D
|
5
5
|
Classifier: Programming Language :: Python :: 3
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -25,6 +25,12 @@ Requires-Dist: pytest==8.3.3
|
|
25
25
|
Requires-Dist: streamlit==1.39.0
|
26
26
|
Requires-Dist: tabulate==0.9.0
|
27
27
|
Requires-Dist: tqdm==4.66.6
|
28
|
+
Requires-Dist: mkdocs==1.6.1
|
29
|
+
Requires-Dist: mkdocs-jupyter==0.25.1
|
30
|
+
Requires-Dist: mkdocs-material==9.5.47
|
31
|
+
Requires-Dist: mkdocstrings-python==1.12.2
|
32
|
+
Requires-Dist: mkdocs-include-markdown-plugin==7.1.2
|
33
|
+
Requires-Dist: mkdocstrings==0.27.0
|
28
34
|
|
29
35
|
[](https://github.com/VirtualPatientEngine/AIAgents4Pharma/actions/workflows/tests.yml)
|
30
36
|
|
{aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/ask_question.py
RENAMED
@@ -100,28 +100,6 @@ class AskQuestionTool(BaseTool):
|
|
100
100
|
llm_result = df_agent.invoke(question)
|
101
101
|
return llm_result["output"]
|
102
102
|
|
103
|
-
def call_run(self,
|
104
|
-
question: str,
|
105
|
-
sys_bio_model: ModelData = ModelData(),
|
106
|
-
st_session_key: str = None,
|
107
|
-
run_manager: Optional[CallbackManagerForToolRun] = None) -> str:
|
108
|
-
"""
|
109
|
-
Run the tool.
|
110
|
-
|
111
|
-
Args:
|
112
|
-
question (str): The question to ask about the simulation results.
|
113
|
-
sys_bio_model (ModelData): The model data.
|
114
|
-
st_session_key (str): The Streamlit session key.
|
115
|
-
run_manager (Optional[CallbackManagerForToolRun]): The CallbackManagerForToolRun object.
|
116
|
-
|
117
|
-
Returns:
|
118
|
-
str: The answer to the question.
|
119
|
-
"""
|
120
|
-
return self._run(question=question,
|
121
|
-
sys_bio_model=sys_bio_model,
|
122
|
-
st_session_key=st_session_key,
|
123
|
-
run_manager=run_manager)
|
124
|
-
|
125
103
|
def get_metadata(self):
|
126
104
|
"""
|
127
105
|
Get metadata for the tool.
|
@@ -123,28 +123,6 @@ class ModelDescriptionTool(BaseTool):
|
|
123
123
|
return chain.invoke({"description": description,
|
124
124
|
"question": question})
|
125
125
|
|
126
|
-
def call_run(self,
|
127
|
-
question: str,
|
128
|
-
sys_bio_model: ModelData = ModelData(),
|
129
|
-
st_session_key: str = None,
|
130
|
-
run_manager: Optional[CallbackManagerForToolRun] = None) -> str:
|
131
|
-
"""
|
132
|
-
Run the tool.
|
133
|
-
|
134
|
-
Args:
|
135
|
-
question (str): The question to ask about the model description.
|
136
|
-
sys_bio_model (ModelData): The model data.
|
137
|
-
st_session_key (str): The Streamlit session key.
|
138
|
-
run_manager (Optional[CallbackManagerForToolRun]): The CallbackManagerForToolRun object.
|
139
|
-
|
140
|
-
Returns:
|
141
|
-
str: The answer to the question
|
142
|
-
"""
|
143
|
-
return self._run(question=question,
|
144
|
-
sys_bio_model=sys_bio_model,
|
145
|
-
st_session_key=st_session_key,
|
146
|
-
run_manager=run_manager)
|
147
|
-
|
148
126
|
def get_metadata(self):
|
149
127
|
"""
|
150
128
|
Get metadata for the tool.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: aiagents4pharma
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0
|
4
4
|
Summary: AI Agents for drug discovery, drug development, and other pharmaceutical R&D
|
5
5
|
Classifier: Programming Language :: Python :: 3
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
@@ -25,6 +25,12 @@ Requires-Dist: pytest==8.3.3
|
|
25
25
|
Requires-Dist: streamlit==1.39.0
|
26
26
|
Requires-Dist: tabulate==0.9.0
|
27
27
|
Requires-Dist: tqdm==4.66.6
|
28
|
+
Requires-Dist: mkdocs==1.6.1
|
29
|
+
Requires-Dist: mkdocs-jupyter==0.25.1
|
30
|
+
Requires-Dist: mkdocs-material==9.5.47
|
31
|
+
Requires-Dist: mkdocstrings-python==1.12.2
|
32
|
+
Requires-Dist: mkdocs-include-markdown-plugin==7.1.2
|
33
|
+
Requires-Dist: mkdocstrings==0.27.0
|
28
34
|
|
29
35
|
[](https://github.com/VirtualPatientEngine/AIAgents4Pharma/actions/workflows/tests.yml)
|
30
36
|
|
@@ -29,7 +29,13 @@ dependencies = [
|
|
29
29
|
"pytest==8.3.3",
|
30
30
|
"streamlit==1.39.0",
|
31
31
|
"tabulate==0.9.0",
|
32
|
-
"tqdm==4.66.6"
|
32
|
+
"tqdm==4.66.6",
|
33
|
+
"mkdocs==1.6.1",
|
34
|
+
"mkdocs-jupyter==0.25.1",
|
35
|
+
"mkdocs-material==9.5.47",
|
36
|
+
"mkdocstrings-python==1.12.2",
|
37
|
+
"mkdocs-include-markdown-plugin==7.1.2",
|
38
|
+
"mkdocstrings==0.27.0"
|
33
39
|
]
|
34
40
|
dynamic = ["version"]
|
35
41
|
|
@@ -0,0 +1 @@
|
|
1
|
+
v1.3.0
|
@@ -1 +0,0 @@
|
|
1
|
-
v1.2.1
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/models/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma/talk2biomodels/tools/plot_figure.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{aiagents4pharma-1.2.1 → aiagents4pharma-1.3.0}/aiagents4pharma.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|