├── .gitignore ├── .streamlit └── config.toml ├── LICENSE ├── README.md ├── app.py ├── images ├── api-key.png ├── logo.png ├── thumbnail.png └── video.mp4 └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/latest/usage/project/#working-with-version-control 110 | .pdm.toml 111 | .pdm-python 112 | .pdm-build/ 113 | 114 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 115 | __pypackages__/ 116 | 117 | # Celery stuff 118 | celerybeat-schedule 119 | celerybeat.pid 120 | 121 | # SageMath parsed files 122 | *.sage.py 123 | 124 | # Environments 125 | .env 126 | .venv 127 | env/ 128 | venv/ 129 | ENV/ 130 | env.bak/ 131 | venv.bak/ 132 | 133 | # Spyder project settings 134 | .spyderproject 135 | .spyproject 136 | 137 | # Rope project settings 138 | .ropeproject 139 | 140 | # mkdocs documentation 141 | /site 142 | 143 | # mypy 144 | .mypy_cache/ 145 | .dmypy.json 146 | dmypy.json 147 | 148 | # Pyre type checker 149 | .pyre/ 150 | 151 | # pytype static type analyzer 152 | .pytype/ 153 | 154 | # Cython debug symbols 155 | cython_debug/ 156 | 157 | # PyCharm 158 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 159 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 160 | # and can be added to the global gitignore or merged into this file. For a more nuclear 161 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 162 | #.idea/ 163 | -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | primaryColor = "#22223b" 3 | backgroundColor = "#2f4550" 4 | secondaryBackgroundColor = "#00172B" 5 | textColor = "#DCDCDC" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) Adam Veldhousen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | AI-Coding-Assistant 3 |
4 |

5 | 6 |
7 | GitHub Repo Name 8 | GitHub Author 9 | GitHub commit-activity 10 | GitHub contributors 11 | GitHub Created At 12 | GitHub Last Commit 13 | GitHub Repo Size 14 | GitHub License 15 | GitHub Open Issues 16 | GitHub Closed Issues 17 | GitHub Open PR 18 | GitHub Closed PR 19 | GitHub Forks 20 | GitHub Stars 21 | GitHub Watchers 22 | GitHub language count 23 | YouTube Video Views 24 |
25 |
26 | 27 |
28 | 29 | [![Gmail](https://img.shields.io/badge/Gmail-D14836?style=for-the-badge&logo=gmail&logoColor=white)](mailto:ys3853428@gmail.com) 30 | [![Github](https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white)](https://github.com/yashksaini-coder) 31 | [![Medium](https://img.shields.io/badge/Medium-12100E?style=for-the-badge&logo=medium&logoColor=white)](https://medium.com/@yashksaini) 32 | [![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/yashksaini/) 33 | [![Bento](https://img.shields.io/badge/Bento-768CFF.svg?style=for-the-badge&logo=Bento&logoColor=white)](https://bento.me/yashksaini) 34 | [![Instagram](https://img.shields.io/badge/Instagram-%23FF006E.svg?style=for-the-badge&logo=Instagram&logoColor=white)](https://www.instagram.com/yashksaini.codes/) 35 | [![X](https://img.shields.io/badge/X-%23000000.svg?style=for-the-badge&logo=X&logoColor=white)](https://twitter.com/EasycodesDev) 36 |
37 | 38 | --- 39 | 40 | # 🚀 AI Coding Assistant 41 | 42 | AI Coding Assistant is a powerful tool designed to assist developers by providing intelligent code suggestions, 🐞 debugging tips, and 📚 documentation generation. It leverages advanced large language models to enhance productivity and streamline the coding process. 43 | 44 | ## Features 45 | - **Intelligent Code Suggestions**: Get smart code suggestions based on the context of your project. 💡 46 | - **Mutliple Models Support**: Supports multiple LLM (large language models) to provide accurate suggestions. 🤖 47 | - **Debugging Tips**: Receive helpful debugging tips to resolve errors efficiently. 🐛 48 | - **Multi-language Support**: Supports various programming languages. 🌐 49 | 50 | ## Usage 51 | 52 | To clone the repository and run the Python file, follow these steps: 53 | 54 | 1. **Clone the Repository:** Open your terminal and navigate to the directory where you want to clone the repository. Use the following command to clone the repository to your local machine: 55 | 56 | ```bash 57 | git clone https://github.com/yashksaini-coder/AI-Coding-Assistant 58 | ``` 59 | 60 | 2. **Navigate to the Project Directory:** Use the following command to navigate to the project directory: 61 | 62 | ```bash 63 | cd AI-Coding-Assistant 64 | ``` 65 | 66 | 3. **Install Dependencies:** If the project has any dependencies, use the following command to install them: 67 | 68 | ```bash 69 | pip install -r requirements.txt 70 | ``` 71 | 72 | 4. **Run the Python File:** Use the following command to run the Python file: 73 | 74 | ```bash 75 | streamlit run app.py 76 | ``` 77 | 78 | 5. **Interact with the AI Coding Assistant:** Once the Python file is running, you can interact with the AI Coding Assistant to get code suggestions, debugging tips, and documentation generation. But first you need to add your Groq API-KEY in the sidebar panel. 79 | 80 |
81 | API-KEY 82 |
83 | 84 | 85 | ## Demo Video: 86 | 87 |
88 | 89 | 90 | 91 |
92 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- 1 | import streamlit as st 2 | from groq import Groq 3 | # from streamlit_extras.badges import badge 4 | 5 | def github_badge(): 6 | badge(type="github", name="yashksaini-coder/Code-Whisper") 7 | 8 | def twitter_badge(): 9 | badge(type="twitter", name="EasycodesDev") 10 | 11 | def groq_completions(user_content, model, api_key): 12 | client = Groq(api_key=api_key) 13 | try: 14 | completion = client.chat.completions.create( 15 | model=model, 16 | messages=[ 17 | { 18 | "role": "system", 19 | "content": "You are an AI-powered coding assistant here to help with programming challenges. \nYou can assist with various tasks, including:\n\n- **Debugging Code:** Identify and fix errors in code shared by the user.\n- **Explaining Concepts:** Provide detailed explanations of programming concepts.\n- **Code Suggestions:** Offer code snippets and suggest approaches to implement features.\n- **Optimization Tips:** Advise on improving code performance.\n- **Learning Resources:** Recommend tutorials, articles, and other resources to help the user learn something new." 20 | }, 21 | { 22 | "role": "user", 23 | "content": user_content 24 | } 25 | ], 26 | temperature=0.5, 27 | max_tokens=5640, 28 | top_p=1, 29 | stream=True, 30 | stop=None, 31 | ) 32 | 33 | result = "" 34 | for chunk in completion: 35 | result += chunk.choices[0].delta.content or "" 36 | 37 | return result 38 | 39 | except Exception as e: 40 | st.error(f"An error occurred: {e}") 41 | return "" 42 | 43 | # Streamlit interface 44 | def main(): 45 | st.set_page_config(page_title="AI Assistant", page_icon="images/logo.png") 46 | st.title("AI Coding Assistant") 47 | with st.sidebar: 48 | st.header("API Key Setup") 49 | api_key = st.text_input("Enter your GROQ API Key", type="password") 50 | try: 51 | if api_key: 52 | client = Groq(api_key=api_key) 53 | completion = client.chat.completions.create( 54 | model="mixtral-8x7b-32768", 55 | messages=[{"role": "system", "content": "Test"}], 56 | temperature=0.5, 57 | max_tokens=5, 58 | top_p=1, 59 | stream=True, 60 | stop=None, 61 | ) 62 | 63 | result = "" 64 | for chunk in completion: 65 | result += chunk.choices[0].delta.content or "" 66 | 67 | if api_key.startswith('gsk-'): 68 | st.warning("Please enter your Groq API key!", icon='⚠') 69 | else: 70 | st.sidebar.success("API Key is valid!") 71 | else: 72 | st.warning("Please enter and validate your API Key in the sidebar.") 73 | 74 | except Exception: 75 | st.sidebar.error("Server is unreachable") 76 | 77 | model_options = [ 78 | "mixtral-8x7b-32768", 79 | "llama3-8b-8192", 80 | "llama3-70b-8192", 81 | "gemma2-9b-it", 82 | "gemma-7b-it", 83 | ] 84 | selected_model = st.selectbox("Select Model", model_options) 85 | user_content = st.text_input("How can I help you today?") 86 | if st.button("Submit"): 87 | if not user_content: 88 | st.warning("Please enter your query to proceed.") 89 | return 90 | 91 | if not api_key: 92 | st.warning("Please enter and validate your API Key in the sidebar.") 93 | return 94 | 95 | answer = groq_completions(user_content, selected_model, api_key) 96 | if answer: 97 | st.success("Response generated successfully!") 98 | st.text_area("", value=answer, height=min(len(answer) * 20, 500), max_chars=None, key=None) 99 | else: 100 | st.error("Failed to generate a response. Please try again.") 101 | 102 | if __name__ == "__main__": 103 | main() 104 | -------------------------------------------------------------------------------- /images/api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashksaini-coder/Code-Whisper/0fb8f5b9b219470d04ab1962b92380694ea6f6b8/images/api-key.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashksaini-coder/Code-Whisper/0fb8f5b9b219470d04ab1962b92380694ea6f6b8/images/logo.png -------------------------------------------------------------------------------- /images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashksaini-coder/Code-Whisper/0fb8f5b9b219470d04ab1962b92380694ea6f6b8/images/thumbnail.png -------------------------------------------------------------------------------- /images/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashksaini-coder/Code-Whisper/0fb8f5b9b219470d04ab1962b92380694ea6f6b8/images/video.mp4 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | groq==0.9.0 2 | streamlit==1.37.1 3 | --------------------------------------------------------------------------------