Prerequisites
Setup Steps
Follow the setup instructions in SETUP.md
Start the Oxigraph server: (Or use OriginTrail's DKG)
docker run --rm -v $PWD/oxigraph:/data -p 7878:7878 ghcr.io/oxigraph/oxigraph serve --location /data --bind 0.0.0.0:7878
Now your local oxigraph instance is ready to load the processed scientific papers from the sampleJsonLds
folder. More info here.
Load JSON-LD data into Oxigraph/OriginTrail's DKG:
pnpm run script scripts/jsonldToTriple.ts
Now your oxigraph has the triples loaded!
(Optional) Start PostgreSQL with vector support:
docker run --name BioAgents-db -e POSTGRES_PASSWORD=123 -p 5432:5432 -d ankane/pgvector
Alternatively, you can use pglite instead of PostgreSQL (Eliza will give you that option when starting for the 1st time)
Start the development server:
Enable the hypothesis generation service:
Prerequisites
System Dependencies
Ubuntu/Debian
sudo apt-get update && sudo apt-get install -y \
git \
python3 \
python3-pip \
curl \
node-gyp \
ffmpeg \
libtool-bin \
autoconf \
automake \
libopus-dev \
make \
g++ \
build-essential \
libcairo2-dev \
libjpeg-dev \
libpango1.0-dev \
libgif-dev \
openssl \
libssl-dev \
libsecret-1-dev \
ghostscript \
graphicsmagick
macOS
brew install \
git \
python3 \
ffmpeg \
ghostscript \
graphicsmagick \
libtool \
autoconf \
automake \
opus \
cairo \
pango \
libgif \
openssl
Project Setup
git clone https://github.com/bio-xyz/BioAgents.git
cd BioAgents
npm install -g pnpm@9.15.4
Install dependencies (Ingnore the bun.lock
file for now):
Set up environment variables:
For basic working just add OPENAI_API_KEY=
and ANTHROPIC_API_KEY=
and remove the rest (important)
Edit .env
with your configuration values.
Start the development server:
Database Setup (OPTIONAL)
Install and start PostgreSQL (docker preferred)
Update POSTGRES_URL
in your .env
file with your database credentials