Ransaka/Code-Assistant
0
1---2title: Code Assistant3emoji: 🏆4colorFrom: indigo5colorTo: indigo6sdk: streamlit7sdk_version: 1.36.08app_file: app.py9pinned: false10---11 12# Building LLM Powered GitHub Assitant13 14This repository contains the code accompanying my Medium article, Building LLM Powered GitHub Assitant. Follow the steps below to set up and run the server for your needs.15 16## Setup Instructions17 181. **Environment Variables**19 Create a `.env` file in the root directory of the project and add your API key:20 ```21 GEMINI_API_KEY=your_api_key_here22 ```23 242. **Install Requirements**25 Install the required packages using the `requirements.txt` file:26 ```27 pip install -r requirements.txt28 ```29 303. **Run the Streamlit Server**31 Start the Streamlit server by running:32 ```33 streamlit run app.py34 ```35 364. **Example (with [keras-ocr](https://github.com/faustomorales/keras-ocr))**3738394041 42If you encounter any issues or have questions, feel free to open an issue in this repository.43 44Happy coding!