Spaces:
Build error
Build error
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,3 +17,32 @@ Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :hear
|
|
| 17 |
|
| 18 |
If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
|
| 19 |
forums](https://discuss.streamlit.io).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
|
| 19 |
forums](https://discuss.streamlit.io).
|
| 20 |
+
|
| 21 |
+
# π€ Multi-Agent Code Assistant
|
| 22 |
+
|
| 23 |
+
A sophisticated AI system with multiple specialized agents working together to generate, review, and test code.
|
| 24 |
+
|
| 25 |
+
## π― Features
|
| 26 |
+
|
| 27 |
+
- **π€ Multi-Agent Architecture**: Separate agents for coding, reviewing, and testing
|
| 28 |
+
- **π RAG Integration**: Retrieves relevant documentation to improve code quality
|
| 29 |
+
- **π§ͺ Automated Testing**: Creates and runs tests for generated code
|
| 30 |
+
- **π Monitoring Dashboard**: Tracks performance metrics and quality scores
|
| 31 |
+
- **π Live Demo**: Deployed on Hugging Face Spaces
|
| 32 |
+
|
| 33 |
+
## π οΈ Tech Stack
|
| 34 |
+
|
| 35 |
+
- **OpenAI GPT-3.5/4** - Language models
|
| 36 |
+
- **Streamlit** - Web interface
|
| 37 |
+
- **LangChain** - Agent framework
|
| 38 |
+
- **ChromaDB** - Vector database for RAG
|
| 39 |
+
- **Pylint & Pytest** - Code analysis and testing
|
| 40 |
+
|
| 41 |
+
## π Quick Start
|
| 42 |
+
|
| 43 |
+
### Local Setup
|
| 44 |
+
|
| 45 |
+
1. **Clone the repository**
|
| 46 |
+
```bash
|
| 47 |
+
git clone https://github.com/yourusername/multi-agent-code-assistant.git
|
| 48 |
+
cd multi-agent-code-assistant
|