From 15c8a69cf3d159de9414fa71bfc226b836858104 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Mon, 30 Sep 2024 02:40:09 -0400 Subject: [PATCH] docs: create a Mermaid diagram showing the intradependencies of this project --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 0cd5cde..86e2c45 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,19 @@ # ac-qu-ai-nt + `ac-qu-ai-nt` is a project I'm working on, using artificial intelligence to break down the user's query, acquire knowledge, and transfer insights to the user('s mind). This is a placeholder while I take small steps to build out the project. + +# Contributing + +This is a summary of the crates I expect to be in this project and how they are used: + +```mermaid +flowchart TD +core --> cli-clap +core --> gui-eframe +core --> tui-ratatui +cli-clap --> multibinary +gui-eframe --> multibinary +tui-ratatui --> multibinary +```