forked from AOSSIE-Org/Devr.AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Devr.AI - Demo #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bakayu
wants to merge
16
commits into
main
Choose a base branch
from
demo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Signed-off-by: Ayush <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Demo Overview
Note
This PR aims to showcase a prototype/working demo of Devr.AI. Below are some of the implemented features:
Demo Video : link
Architecture
This architecture will be followed for this demo (full architecture can be found here: link):
flowchart TB subgraph "External Platforms" GH["GitHub"] DS["Discord"] end subgraph "Core Processing Engine" EB["Event Bus"] HR["Handler Registry"] end subgraph "AI Services" LLM["LLM Service"] KR["Knowledge Retrieval"] end subgraph "Storage" VDB["Vector Database"] DB["Relational Database"] end GH --> EB DS --> EB EB <--> HR HR <--> LLM HR <--> KR LLM <--> VDB KR <--> VDB HR <--> DBFeatures Implemented
Installation
For installing the project locally refer to the Installation Guide.
1. Event Bus
What it does:
Implementation details:
2. GitHub Event Integration
What it does:
Implementation details:
Testing:
To test the GitHub integration:
ngrok URL+/github/webhookbackend/.envfile3. Discord Bot Integration
What it does:
Implementation details:
Note
config.jsonandpending_notification.jsonfiles are being used to store config data and the queue system. This is for demo purposes only, in actual implementation there will be a more solid queue system and config data to be stored in Supabase.Testing:
To test the Discord integration:
backend/.envfile./helpcommand to see available commands./devr configure_channel./devr register_maintainer.4. RAG-Based Q&A System
What it does:
Implementation details:
/askcommand for querying the knowledge base.Note
Right now,
*.mdfiles stored in a localdocsdirectory are being used to create embeddings. In actual implementation we will have a more solid system to generate embeddings.Testing:
To test the RAG Q&A system:
backend/.envfilebackend/.envfile/askcommand to query your project documentation5. Documentation System
What it does:
Implementation details:
Testing:
To view the documentation locally:
Environment Variables
The following environment variables need to be set in your
backend/.envfile: