Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,13 +1,72 @@
|
|
| 1 |
-
|
| 2 |
-
title: Axon Pro IDE
|
| 3 |
emoji: ⚡
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
|
| 8 |
-
app_file: app.py
|
| 9 |
-
pinned: false
|
| 10 |
license: mit
|
| 11 |
-
-
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
title: Axon Pro
|
|
|
|
| 2 |
emoji: ⚡
|
| 3 |
+
colorFrom: blue
|
| 4 |
+
colorTo: green
|
| 5 |
sdk: gradio
|
| 6 |
+
pinned: true
|
|
|
|
|
|
|
| 7 |
license: mit
|
| 8 |
+
short_description: "AI-Powered Code IDE with Free Local Models"
|
| 9 |
|
| 10 |
+
# ⚡ Axon Pro — Free AI-Powered Code IDE
|
| 11 |
+
|
| 12 |
+
The completely free, open-source alternative to GitHub Copilot and Cursor. A complete IDE in your browser powered by local AI models with no API keys required.
|
| 13 |
+
|
| 14 |
+
## ✨ Features
|
| 15 |
+
|
| 16 |
+
- **AI Inline Completion** — `Ctrl+Enter` for ghost text completions, `Tab` to accept
|
| 17 |
+
- **AI Chat** — Context-aware assistant that sees your code
|
| 18 |
+
- **Code Execution** — Run JavaScript directly in the browser
|
| 19 |
+
- **Multi-File Editor** — Syntax highlighting for 13+ languages
|
| 20 |
+
- **Voice-to-Code** — Speak and AI writes the code
|
| 21 |
+
- **AI Explain** — Generates commented code with side-by-side diff view
|
| 22 |
+
- **AI Refactor** — One-click code improvement with diff preview
|
| 23 |
+
- **AI Generate** — Describe what you want, get code instantly
|
| 24 |
+
- **Git-Style Diff View** — Review AI changes before applying
|
| 25 |
+
- **Dark IDE Theme** — Professional developer experience
|
| 26 |
+
|
| 27 |
+
## ⌨ Keyboard Shortcuts
|
| 28 |
+
|
| 29 |
+
| Shortcut | Action |
|
| 30 |
+
|----------|--------|
|
| 31 |
+
| Ctrl+Enter | AI Code Completion |
|
| 32 |
+
| Ctrl+R | Run Code |
|
| 33 |
+
| Ctrl+S | Save File |
|
| 34 |
+
| Ctrl+Shift+E | AI Explain |
|
| 35 |
+
| Ctrl+B | Toggle File Explorer |
|
| 36 |
+
| Ctrl+J | Toggle Terminal |
|
| 37 |
+
| Ctrl+L | Toggle AI Chat |
|
| 38 |
+
| Ctrl+N | New File |
|
| 39 |
+
| Tab | Accept AI suggestion / Insert spaces |
|
| 40 |
+
|
| 41 |
+
## 🛠 Tech Stack
|
| 42 |
+
|
| 43 |
+
- **AI Engine**: TinyLlama/TinyCode (1.1B parameters) - runs completely free on Hugging Face Spaces
|
| 44 |
+
- **Framework**: Gradio (replaces static HTML for secure model access)
|
| 45 |
+
- **Editor**: Custom syntax highlighter with 13+ language support
|
| 46 |
+
- **Runtime**: In-browser JavaScript execution
|
| 47 |
+
- **Voice**: Web Speech API
|
| 48 |
+
- **Deployment**: Gradio Space with minimal inference requirements
|
| 49 |
+
|
| 50 |
+
## 🌐 Supported Languages
|
| 51 |
+
|
| 52 |
+
JavaScript, Python, TypeScript, HTML, CSS, JSON, Markdown, Shell, SQL, Rust, Go, Java, C++, Ruby
|
| 53 |
+
|
| 54 |
+
## 📦 Installation
|
| 55 |
+
|
| 56 |
+
1. Clone this repository
|
| 57 |
+
2. Create a Gradio Space on Hugging Face
|
| 58 |
+
3. Add these files to your Space:
|
| 59 |
+
- `app.py` (main application)
|
| 60 |
+
- `requirements.txt`
|
| 61 |
+
- `README.md`
|
| 62 |
+
|
| 63 |
+
## 📝 Notes
|
| 64 |
+
|
| 65 |
+
- This version uses **TinyLlama-1.1B** instead of Claude, so capabilities are more limited but completely free
|
| 66 |
+
- No API keys required - everything runs within the Space
|
| 67 |
+
- For better performance, consider using a dedicated Space with higher resources
|
| 68 |
+
- The model is optimized for code completion but may not match commercial solutions in quality
|
| 69 |
+
|
| 70 |
+
## 🤝 Built by [AIencoder](https://huggingface.co/AIencoder)
|
| 71 |
+
|
| 72 |
+
*Axon Pro is 100% free and open-source. No API keys, no subscriptions, no hidden costs.*
|