|
a |
|
b/aiagents4pharma/talk2aiagents4pharma/states/state_talk2aiagents4pharma.py |
|
|
1 |
""" |
|
|
2 |
This is the state file for the Talk2AIAgents4Pharma agent. |
|
|
3 |
""" |
|
|
4 |
|
|
|
5 |
from ...talk2biomodels.states.state_talk2biomodels import Talk2Biomodels |
|
|
6 |
from ...talk2knowledgegraphs.states.state_talk2knowledgegraphs import Talk2KnowledgeGraphs |
|
|
7 |
|
|
|
8 |
class Talk2AIAgents4Pharma(Talk2Biomodels, |
|
|
9 |
Talk2KnowledgeGraphs): |
|
|
10 |
""" |
|
|
11 |
The state for the Talk2AIAgents4Pharma agent. |
|
|
12 |
|
|
|
13 |
This class inherits from the classes: |
|
|
14 |
1. Talk2Biomodels |
|
|
15 |
2. Talk2KnowledgeGraphs |
|
|
16 |
""" |