Update README.md
Browse files
README.md
CHANGED
|
@@ -1,15 +1,44 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
#
|
| 4 |
|
| 5 |
-
-
|
| 6 |
-
|
| 7 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- Python execution tool
|
| 9 |
- Web search integration
|
| 10 |
-
- Streamlit UI
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
-
##
|
| 13 |
|
| 14 |
-
bash
|
| 15 |
-
pip install -r requirements.txt
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AI Codebase Intelligence
|
| 3 |
+
emoji: 🤖
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: "1.35.0"
|
| 8 |
+
python_version: "3.10"
|
| 9 |
+
app_file: app.py
|
| 10 |
+
pinned: false
|
| 11 |
+
---
|
| 12 |
|
| 13 |
+
# AI Codebase Intelligence & Autonomous Debugging System
|
| 14 |
|
| 15 |
+
An AI-powered multi-agent system for:
|
| 16 |
+
|
| 17 |
+
- Semantic code search
|
| 18 |
+
- Autonomous debugging
|
| 19 |
+
- Reflection-based improvement
|
| 20 |
+
- Codebase understanding
|
| 21 |
+
|
| 22 |
+
## Features
|
| 23 |
+
|
| 24 |
+
- CrewAI multi-agent workflow
|
| 25 |
+
- HuggingFace embeddings
|
| 26 |
+
- FAISS vector search
|
| 27 |
- Python execution tool
|
| 28 |
- Web search integration
|
| 29 |
+
- Streamlit UI
|
| 30 |
+
|
| 31 |
+
## Tech Stack
|
| 32 |
+
|
| 33 |
+
- Python
|
| 34 |
+
- CrewAI
|
| 35 |
+
- LangChain
|
| 36 |
+
- HuggingFace
|
| 37 |
+
- FAISS
|
| 38 |
+
- Streamlit
|
| 39 |
|
| 40 |
+
## Run Locally
|
| 41 |
|
| 42 |
+
```bash
|
| 43 |
+
pip install -r requirements.txt
|
| 44 |
+
streamlit run app.py
|