CoolFace
Apppublic

goavinash5/Gradio_LLAMA_Testing

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
CONTRIBUTING.md91 linesDownload Raw Back to root
1# Contributing to [llama2-webui](https://github.com/liltom-eth/llama2-webui)2 3We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:4 5- Reporting a bug6- Proposing new features7- Discussing the current state of the code8- Update README.md9- Submitting a PR10 11## Using GitHub's [issues](https://github.com/liltom-eth/llama2-webui/issues)12 13We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/liltom-eth/llama2-webui/issues). It's that easy!14 15Thanks for **[jlb1504](https://github.com/jlb1504)** for reporting the [first issue](https://github.com/liltom-eth/llama2-webui/issues/1)!16 17**Great Bug Reports** tend to have:18 19- A quick summary and/or background20- Steps to reproduce21  - Be specific!22  - Give a sample code if you can.23- What you expected would happen24- What actually happens25- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)26 27Proposing new features are also welcome.28 29## Pull Request30 31All pull requests are welcome. For example, you update the `README.md` to help users to better understand the usage.32 33### Clone the repository34 351. Create a user account on GitHub if you do not already have one.36 372. Fork the project [repository](https://github.com/liltom-eth/llama2-webui): click on the *Fork* button near the top of the page. This creates a copy of the code under your account on GitHub.38 393. Clone this copy to your local disk:40 41   ```42   git clone git@github.com:liltom-eth/llama2-webui.git43   cd llama2-webui44   ```45 46### Implement your changes47 481. Create a branch to hold your changes:49 50   ```51   git checkout -b my-feature52   ```53 54   and start making changes. Never work on the main branch!55 562. Start your work on this branch. 57 583. When you’re done editing, do:59 60   ```61   git add <MODIFIED FILES>62   git commit63   ```64 65   to record your changes in [git](https://git-scm.com/).66 67### Submit your contribution68 691. If everything works fine, push your local branch to the remote server with:70 71   ```72   git push -u origin my-feature73   ```74 752. Go to the web page of your fork and click "Create pull request" to send your changes for review.76 77   ```{todo}78      Find more detailed information in [creating a PR]. You might also want to open79      the PR as a draft first and mark it as ready for review after the feedbacks80      from the continuous integration (CI) system or any required fixes.81   ```82 83## License84 85By contributing, you agree that your contributions will be licensed under its MIT License.86 87## Questions?88 89Email us at [liltom.eth@gmail.com](mailto:liltom.eth@gmail.com)90 91