Modular Automation of Scientific Research with Multi-Agent Systems
Project description
Denario
Denario is a multiagent system designed to automatize scientific research. Denario implements AI agents with AG2 and LangGraph. The research analysis backend is cmbagent. Project under construction.
Resources
Installation
To install denario create a virtual environment and pip install it. We recommend using python3.12:
python -m venv Denario_env
source Denario_env/bin/activate
pip install denario
Get started
Initialize a Denario instance and describe the data and tools to be employed.
from denario import Denario
den = Denario(project_dir="project_dir")
prompt = """
Analyze the experimental data stored in data.csv using sklearn and pandas.
This data includes time-series measurements from a particle detector.
"""
den.set_data_description(prompt)
Generate a research idea from that data specification.
den.get_idea()
Generate the methodology required for working on that idea.
den.get_method()
With the methodology setup, perform the required computations and get the plots and results.
den.get_results()
Finally, generate a latex article with the results. You can specify the journal style, in this example we choose the APS (Physical Review Journals) style.
from denario import Journal
den.get_paper(journal=Journal.APS)
You can also manually provide any info as a string or markdown file in an intermediate step, using the set_idea, set_method or set_results methods. For instance, for providing a file with the methodology developed by the user:
den.set_method(path_to_the_method_file.md)
App
You can run Denario using a GUI through the DenarioApp.
The app is already installed with pip install denario[app], otherwise install it with pip install denario_app.
Launch it with
denario run
Test the deployed app in HugginFace Spaces.
Build from source
pip
You will need python 3.12 or higher installed. Clone Denario:
git clone https://github.com/AstroPilot-AI/Denario.git
cd Denario
Create and activate a virtual environment
python3 -m venv Denario_env
source Denario_env/bin/activate
And install the project
pip install -e .
uv
You can also install the project using uv, just running:
uv sync
which will create the virtual environment and install the dependencies and project. Activate the virtual environment if needed with
source .venv/bin/activate
Contributing
Pull requests are welcome! Feel free to open an issue for bugs, comments, questions and suggestions.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file denario-0.1.12.tar.gz.
File metadata
- Download URL: denario-0.1.12.tar.gz
- Upload date:
- Size: 886.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b55d9590d9ac47faff08885d6068d777809c0e2c5af1634e47a282643185847c
|
|
| MD5 |
ca3f3dfb049b0a4fa8cdf566a9cb9ae5
|
|
| BLAKE2b-256 |
c73c7ea25e47525c06da98e6a9e276bd2aa9113a10966b42a7b6fa7109c0d7a6
|
File details
Details for the file denario-0.1.12-py3-none-any.whl.
File metadata
- Download URL: denario-0.1.12-py3-none-any.whl
- Upload date:
- Size: 220.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03c997cfffb76a7b4cfd2c3fe0674264063df0a3c289270677cea743b93d53d1
|
|
| MD5 |
71d684d1e4754516c229f5e2a1f2c001
|
|
| BLAKE2b-256 |
c25998541bff62b92f21511d85d2aaab670d496656fe507c3ede759813851c60
|