AI Copilot for Code is an intelligent Visual Studio Code extension that assists developers by providing context-aware code suggestions and completions. Powered by the Groq API, this tool helps you write code faster and more efficiently while minimizing errors. 🚀 Features • Smart Code Suggestions: Automatically generates relevant code snippets based on your comments or partially written code. • Language-Specific Completions: Automatically adapts to the programming language of the current file. • Inline Code Suggestions: Offers suggestions directly in your editor as you type. • Ease of Use: Accept suggestions with the Tab key or dismiss with Esc. • Optimized for Productivity: Provides direct code without unnecessary comments or clutter. 🛠️ How It Works
📦 Installation From Visual Studio Code Marketplace
🖥️ Requirements • Visual Studio Code version: 1.75.0 or later • Node.js version: LTS recommended • Active Internet Connection: Required for Groq API communication 🔍 Example Input // Create a function to calculate the factorial of a number Suggested Code function factorial(n) { if (n === 0 || n === 1) { return 1; } return n * factorial(n - 1); } 🐛 Known Issues • Large or ambiguous comments may result in delayed or less accurate suggestions. • Limited offline functionality (requires an active internet connection for API calls). 🤝 Contributing Contributions are welcome! Here's how you can help:
📜 License This project is licensed under the MIT License. 👨💻 Author Developed by Yug Patil For inquiries or suggestions, feel free to reach out! 📢 Support If you encounter any issues or have feature requests, please open an issue in the GitHub repository. |