A LangChain Deep Agent assistant for biologists, bioinformaticians, and clinical researchers.
-
Literature question-answering - scan hundreds of papers and trial records at once to perform deep literature searches
-
Data analysis via code execution - generate and execute code in a safely contained sandbox to perform almost any data analysis
-
File and figure generation - create CSV and Excel files of data, Word docs such as clinical or lab protocols, and data visualizations and plots
-
PubMed - over 40 million scientific abstracts
-
PMC full texts - full text of over 8 million open-access papers
-
ClinicalTrials.gov - records from over 600,000 trials
-
Web search - agentic search over the entire open web
-
CSV/Excel upload - upload your data files and let the agent do analyses on them
You need a LangSmith account. Setup will prompt you to add
your LANGSMITH_API_KEY.
Model calls go through the LangSmith LLM gateway, so your workspace also needs the
provider key behind them, added once under Settings → Integrations → Provider Secrets
as OPENAI_API_KEY and/or ANTHROPIC_API_KEY. Add whichever providers the models you run use
(the default is OpenAI).
LangSmith Sandboxes must also be enabled. Enable them from the Sandboxes tab in your LangSmith console. On a personal account on the free Developer tier you will need to add a credit card to use sandboxes, but you get free 5 LangSmith Compute Units (LCUs) per month, enough for ~650 agent runs.
In the terminal:
git clone https://github.com/langchain-samples/deep-life-sci.git
cd deep-life-sciNeeds git, which setup also uses to fetch the chat UI.
uv is a widely-used package manager for Python that allows the setup script to install the necessary libraries.
On macOS / Linux:
curl -LsSf https://astral.sh/uv/install.sh | shOn Windows:
irm https://astral.sh/uv/install.ps1 | iexuv run scripts/setup.pyuv run scripts/dev.py # opens the chat UI in your browser (recommended)
# or
uv run agent "which papers base-edit PCSK9?" # runs headlessly in CLICtrl-C to stop the running server.
scripts/ setup.py (one-time setup), dev.py (chat stack), build_snapshot.py
research_agent/ the agent: assembly, entry points, tools, prompts, middleware
evals/ LangSmith datasets + evaluators
ui/ artifact components rendered by the chat frontend
This is a demonstration project, intended for research and educational use. Its answers are generated by language models from published literature and trial registries, and may be incomplete, outdated, or wrong. It is not medical advice, and must not be used for clinical decision-making, diagnosis, or treatment.
The UI is a modified clone of agent-chat-ui in
.chat-ui/.
Full text journal articles are only available if present in PMC's open-access subset. Only abstracts are available for paywalled papers.