https://github.com/axone-protocol/doctai
🩺 AI agent demo running on the Axone protocol for collaborative medical diagnosis.
https://github.com/axone-protocol/doctai
agentic-ai dapp medical-application showcase
Last synced: 3 months ago
JSON representation
🩺 AI agent demo running on the Axone protocol for collaborative medical diagnosis.
- Host: GitHub
- URL: https://github.com/axone-protocol/doctai
- Owner: axone-protocol
- License: bsd-3-clause
- Created: 2025-04-03T19:47:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-08T18:34:38.000Z (11 months ago)
- Last Synced: 2025-07-09T18:28:49.290Z (11 months ago)
- Topics: agentic-ai, dapp, medical-application, showcase
- Language: TypeScript
- Homepage: https://axone.xyz
- Size: 1.93 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - axone-protocol/doctai - 🩺 AI agent demo running on the Axone protocol for collaborative medical diagnosis. (TypeScript)
README
# DoctAI
> AI agent demo running on the [Axone](https://axone.xyz) protocol for collaborative medical diagnosis.
[](https://github.com/axone-protocol/doctai/actions/workflows/lint.yml)
[](https://github.com/axone-protocol/doctai/actions/workflows/build.yml)
[](https://conventionalcommits.org)
[](https://github.com/axone-protocol/.github/blob/main/CODE_OF_CONDUCT.md)
[](https://opensource.org/licenses/BSD-3-Clause)

## What is DoctAI?
> [!NOTE]
> 🥘 Still cooking. Not ready for prime time yet.
DoctAI is a webapp demo showcasing an AI agent running on top of the Axone protocol, enabling user interaction with a collaborative AI system for medical diagnosis.
Main features:
- Submit medical queries or data and receive AI-driven analysis.
- Demonstrate cross-lab collaboration via DoctAI.
- Highlight governance ensuring data ownership and control.
- Provide a functional, user-friendly demo interface.
## Getting Started
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
Be sure to have the following properly installed:
- [Node.js](https://nodejs.org/en/) `v22.15` ([jod](https://nodejs.org/en/blog/release/v22.15.0/))
- [pnpm](https://pnpm.io/) `v10.10`
- [Docker](https://www.docker.com/)
### Setup environment variables
Copy the example file and edit if needed:
```sh
cp .env.example .env
```
### Start the PostgreSQL database
Use Docker Compose to launch the [PostgreSQL](https://www.postgresql.org/) database:
```sh
docker compose up -d
```
If you want to use [Adminer](https://www.adminer.org/en/) (web UI for PostgreSQL), run with the debug profile:
```sh
docker compose --profile debug up -d
```
### Install dependencies
Install the required dependencies using `pnpm`:
```sh
pnpm install
```
### Start the development server
```sh
pnpm dev
```
Open in your browser to see the result.
## You want to get involved? 😍
Please check out Axone health files :
- [Contributing](https://github.com/axone-protocol/.github/blob/main/CONTRIBUTING.md)
- [Code of conduct](https://github.com/axone-protocol/.github/blob/main/CODE_OF_CONDUCT.md)