├── .github └── ISSUE_TEMPLATE │ └── bug_report.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us fix issues 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Which version of LM Studio?** 11 | Example: LM Studio 0.3.6 12 | 13 | **Which operating system?** 14 | What is your operating system? (Example: Windows) 15 | 16 | **What is the bug?** 17 | A clear and concise description of what the bug is. 18 | 19 | **Screenshots** 20 | If applicable, add screenshots to help explain your problem. 21 | 22 | **Logs** 23 | Add any relevant logs. 24 | 25 | **To Reproduce** 26 | Steps to reproduce the behavior: 27 | 1. Go to '...' 28 | 2. Click on '....' 29 | 3. Scroll down to '....' 30 | 4. See error 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # lmstudio-bug-tracker 2 | Bug tracking for the LM Studio desktop application 3 | --------------------------------------------------------------------------------