Welcome to AIAgents4Pharma – an open-source project by Team VPE that brings together AI-driven tools to help researchers and pharma interact seamlessly with complex biological data.
Our toolkit currently consists of the following agents:
- Talk2BioModels (v1 released; v2 in progress): Engage directly with mathematical models in systems biology.
- Talk2KnowledgeGraphs (v1 in progress): Access and explore complex biological knowledge graphs for insightful data connections.
- Talk2Scholars (v1 in progress): Get recommendations for articles related to your choice. Download, query, and write/retrieve them to your reference manager (currently supporting Zotero).
- Talk2Cells (v1 in progress): Query and analyze sequencing data with ease.
- Talk2AIAgents4Pharma (v1 in progress): Converse with all the agents above (currently supports T2B and T2KG)
- T2B and T2KG accepted at the MLGenX workshop during ICLR #2025 in Singapore. Read More
We now have all the agents available on Docker Hub.
If your machine has NVIDIA GPU(s), please install the following this:
- nvidia-cuda-toolkit
- nvidia-container-toolkit (required for GPU support with Docker; enables containers to access NVIDIA GPUs for accelerated computing). After installing
nvidia-container-toolkit, please restart Docker to ensure GPU support is enabled.
mkdir talk2aiagents4pharma && cd talk2aiagents4pharma && wget https://raw.githubusercontent.com/VirtualPatientEngine/AIAgents4Pharma/main/aiagents4pharma/talk2aiagents4pharma/docker-compose.yml https://raw.githubusercontent.com/VirtualPatientEngine/AIAgents4Pharma/main/aiagents4pharma/talk2aiagents4pharma/.env.example https://raw.githubusercontent.com/VirtualPatientEngine/AIAgents4Pharma/main/aiagents4pharma/talk2aiagents4pharma/startup.shmkdir talk2knowledgegraphs && cd talk2knowledgegraphs && wget https://raw.githubusercontent.com/VirtualPatientEngine/AIAgents4Pharma/main/aiagents4pharma/talk2knowledgegraphs/docker-compose.yml https://raw.githubusercontent.com/VirtualPatientEngine/AIAgents4Pharma/main/aiagents4pharma/talk2knowledgegraphs/.env.example https://raw.githubusercontent.com/VirtualPatientEngine/AIAgents4Pharma/main/aiagents4pharma/talk2knowledgegraphs/startup.shCopy and configure your .env file:
cp .env.example .envThen edit .env and add your API keys:
OPENAI_API_KEY=... # Required for both agents
NVIDIA_API_KEY=... # Required for both agents
LANGCHAIN_TRACING_V2=true # Optional for both agents
LANGCHAIN_API_KEY=... # Optional for both agentsAdditional Notes for Windows Users
chmod +x startup.sh
./startup.sh # Add --cpu flag to force CPU mode if neededdocker run -d \
--name talk2biomodels \
-e OPENAI_API_KEY=<your_openai_api_key> \
-e NVIDIA_API_KEY=<your_nvidia_api_key> \
-p 8501:8501 \
virtualpatientengine/talk2biomodels
docker run -d \
--name talk2scholars \
-e OPENAI_API_KEY=<your_openai_api_key> \
-e ZOTERO_API_KEY=<your_zotero_api_key> \
-e ZOTERO_USER_ID=<your_zotero_user_id> \
-e NVIDIA_API_KEY=<your_nvidia_api_key> \
-p 8501:8501 \
virtualpatientengine/talk2scholars
Once started, the agent is available at:
http://localhost:8501
To use Talk2AIAgents4Pharma or Talk2KnowledgeGraphs, you need a free NVIDIA API key. Create an account and apply for free credits here.
To use Talk2BioModels or Talk2Scholars, you need a free NVIDIA API key. Create an account and apply for free credits here.
Only for Talk2Scholars, you also need a Zotero API key, which you can generate here. (For all other agents, the Zotero key is not required.)
If you are using docker on Windows, please follow these Windows Setup Notes.
LangSmith support is optional. To enable it, create an API key here.
More on running multiple agents simultaneously
📝 By default, talk2knowledgegraphs includes a small subset of the PrimeKG knowledge graph, allowing users to start interacting with it out of the box.
To switch to a different knowledge graph or use your own, refer to the deployment guide.
- Clone the repository:
git clone https://github.com/VirtualPatientEngine/AIAgents4Pharma && cd AIAgents4Pharma- Install dependencies:
We use Conda as our environment manager, Follow the official Quickstart install instructions provided by anaconda/miniconda.
conda create --name AIAgents4Pharma python=3.12 -y && conda activate AIAgents4Pharma && pip install --upgrade pip && pip install -r requirements.txt- Initialize API Keys
export OPENAI_API_KEY=.... # Required for all agents
export NVIDIA_API_KEY=.... # Required for all agents
export ZOTERO_API_KEY=.... # Required for T2S
export ZOTERO_USER_ID=.... # Required for T2S
export LANGCHAIN_TRACING_V2=true # Optional for all agents
export LANGCHAIN_API_KEY=... # Optional for all agentsTo use Talk2AIAgents4Pharma, Talk2BioModels, Talk2KnowledgeGraphs, or Talk2Scholars, you need a free NVIDIA API key. Create an account and apply for free credits here.
Only for Talk2Scholars, you also need a Zotero API key, which you can generate here. (For all other agents, the Zotero key is not required.)
To use Talk2Scholars, you must have FAISS installed through Conda. Follow installation instructions for your OS here.
Additionally on Windows, the pcst_fast 1.0.10 library requires Microsoft Visual C++ 14.0 or greater.
You can download the Microsoft C++ Build Tools here.
LangSmith support is optional. To enable it, create an API key here.
Please note that this will create a new tracing project in your Langsmith
account with the name T2X-xxxx, where X can be AA4P (Main Agent),
B (Biomodels), S (Scholars), KG (KnowledgeGraphs), or C (Cells).
If you skip the previous step, it will default to the name default.
xxxx will be the 4-digit ID created for the session.
- Launch the app:
streamlit run app/frontend/streamlit_app_<agent>.pyReplace <agent> with the agent name you are interested to launch:
talk2aiagents4pharmatalk2biomodelstalk2knowledgegraphstalk2scholarstalk2cells
📝 By default, talk2knowledgegraphs includes a small subset of the PrimeKG knowledge graph, allowing users to start interacting with it out of the box.
To switch to a different knowledge graph or use your own, refer to the deployment guide.
For detailed instructions on each agent, please refer to their respective modules.
pip install aiagents4pharmaCheck out the tutorials on each agent for detailed instructions.
We welcome your support to make AIAgents4Pharma even better.
All types of contributions are appreciated — whether you're fixing bugs, adding features, improving documentation, or helping with testing, every contribution is valuable.
- Star this repository to show your support.
- Fork the repository.
- Create a new branch for your work:
git checkout -b feat/your-feature-name- Make your changes and commit them:
git commit -m "feat: add a brief description of your change"- Push your branch:
git push origin feat/your-feature-name- Open a Pull Request.
- Beta testing for Talk2BioModels and Talk2Scholars.
- Development work related to Python, bioinformatics, or knowledge graphs.
- Talk2Biomodels: @lilijap, @gurdeep330
- Talk2Cells: @tAndreaniSanofi, @gurdeep330
- Talk2KnowledgeGraphs: @awmulyadi
- Talk2Scholars: @ansh-info, @gurdeep330
Please refer to our CONTRIBUTING.md for more detailed contribution guidelines.
If you have questions, bug reports, feature requests, comments, or suggestions, we would love to hear from you.
Please open an issue or start a discussion
