aiagents4pharma 1.2.1__py3-none-any.whl → 1.3.0__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.
@@ -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.2.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
  [![TESTS](https://github.com/VirtualPatientEngine/AIAgents4Pharma/actions/workflows/tests.yml/badge.svg?branch=feat%2Finitial-setup)](https://github.com/VirtualPatientEngine/AIAgents4Pharma/actions/workflows/tests.yml)
30
36
 
@@ -4,15 +4,15 @@ aiagents4pharma/talk2biomodels/models/__init__.py,sha256=5fTHHm3PVloYPNKXbgNlcPg
4
4
  aiagents4pharma/talk2biomodels/models/basico_model.py,sha256=SC9rFzLWzNxcQueAduL3dBmDh-lTtP1agH-TXjucOkw,4199
5
5
  aiagents4pharma/talk2biomodels/models/sys_bio_model.py,sha256=xN-ZXCpIxNkEXuDIvi_AW6LpCyPqXReGyhLPyJIXNqs,1980
6
6
  aiagents4pharma/talk2biomodels/tools/__init__.py,sha256=AM03pbYT3nOzI5jf_CJmSDaDwrI-IZ0Zq9hLA2tOXpw,182
7
- aiagents4pharma/talk2biomodels/tools/ask_question.py,sha256=7mH5zZFC_syMuDga0ZI6eOyjdPKQNv1hpgJ2EGqTRU8,5377
7
+ aiagents4pharma/talk2biomodels/tools/ask_question.py,sha256=o9ae4s3wsDFr_pGBU1cSxKhJ7E2yjybIzG1Y4z6957Y,4534
8
8
  aiagents4pharma/talk2biomodels/tools/custom_plotter.py,sha256=CdgJjlHAkdyjnwPD6nHARsJXnx_CE0MWg5VOz4oBjY0,2910
9
9
  aiagents4pharma/talk2biomodels/tools/fetch_parameters.py,sha256=levr42F-m53Oya8VTbLlvLJt1snNgnIlSHs4JDiNAv8,2063
10
- aiagents4pharma/talk2biomodels/tools/model_description.py,sha256=7qsZ8Lq23eTtFJFMfufawZKgDLTvyihKQJB_18N5Ta4,6232
10
+ aiagents4pharma/talk2biomodels/tools/model_description.py,sha256=MwG3XLw-lrR8iReH6VQ94yuU4VGn-I9pxv8anFxIMVc,5383
11
11
  aiagents4pharma/talk2biomodels/tools/plot_figure.py,sha256=S_d8nNy7NVSBIqnDhg6ex_AdaMqUmVX8D1qOjRGe3r8,5594
12
12
  aiagents4pharma/talk2biomodels/tools/search_models.py,sha256=5qmgQcwlICYAFG11y-aEhBSeYYT6Lu6AKGL2V-p1ggQ,2685
13
13
  aiagents4pharma/talk2biomodels/tools/simulate_model.py,sha256=n6TbfJRgeo2X_1wXPHGeeCvZoso8LFjLqqfKhfseFVM,7287
14
- aiagents4pharma-1.2.1.dist-info/LICENSE,sha256=IcIbyB1Hyk5ZDah03VNQvJkbNk2hkBCDqQ8qtnCvB4Q,1077
15
- aiagents4pharma-1.2.1.dist-info/METADATA,sha256=fZ61njtDd6PHjFtfWkUnQA4xTtJivNpTkYb1tBF8Yz0,5460
16
- aiagents4pharma-1.2.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
17
- aiagents4pharma-1.2.1.dist-info/top_level.txt,sha256=-AH8rMmrSnJtq7HaAObS78UU-cTCwvX660dSxeM7a0A,16
18
- aiagents4pharma-1.2.1.dist-info/RECORD,,
14
+ aiagents4pharma-1.3.0.dist-info/LICENSE,sha256=IcIbyB1Hyk5ZDah03VNQvJkbNk2hkBCDqQ8qtnCvB4Q,1077
15
+ aiagents4pharma-1.3.0.dist-info/METADATA,sha256=PzERn1_0BrkZlrloEk_rTtF4ntaBwxmptFfjyXu5vso,5698
16
+ aiagents4pharma-1.3.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
17
+ aiagents4pharma-1.3.0.dist-info/top_level.txt,sha256=-AH8rMmrSnJtq7HaAObS78UU-cTCwvX660dSxeM7a0A,16
18
+ aiagents4pharma-1.3.0.dist-info/RECORD,,