FallnAI/Autonomous-Software-Developer
0
1---2title: FallnAI Autonomous Software Developer3emoji: ๐4colorFrom: pink5colorTo: purple6sdk: docker7app_port: 78608---9 10# FallnAI Autonomous Software Development Platform11 12This is a proof-of-concept autonomous software development platform. It leverages a crew of AI agents using open-source Large Language Models (LLMs) from Hugging Face to write, test, and correct its own code within a secure Docker sandbox. It automatically pushes the final, working code and documentation to a new GitHub repository.13 14## How it works15 161. **Frontend**: A simple web UI in `index.html` allows users to submit a software request.172. **Backend**: The Flask application in `app.py` receives the request.183. **Agent Crew**: The backend uses the CrewAI framework to orchestrate a team of specialized agents (e.g., Planner, Coder, Tester) to execute a sequential development process: plan, code, test, and document.194. **LLMs & Transformers**: Each agent uses an LLM (accessed via the `transformers` library) as its core reasoning engine to perform its task.205. **Sandboxing**: The generated code is executed inside a temporary, isolated Docker container to prevent any malicious code from affecting the host system.216. **Correction Loop**: The LLM analyzes the output and errors from the sandbox and corrects the code until it passes.227. **Documentation & Deployment**: A dedicated agent writes a `README.md` file, and a DevOps agent pushes all final files to a new, unique GitHub repository.23 24Give it a try! You can describe any simple Python script, such as "a program that calculates the factorial of a number."25 