|
| 1 | +## Description |
| 2 | + |
| 3 | +<!-- Provide a clear and concise description of your changes --> |
| 4 | + |
| 5 | +## Type of Change |
| 6 | + |
| 7 | +<!-- Mark the relevant option with an 'x' --> |
| 8 | + |
| 9 | +- [ ] 🐛 Bug fix (non-breaking change which fixes an issue) |
| 10 | +- [ ] ✨ New feature (non-breaking change which adds functionality) |
| 11 | +- [ ] 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected) |
| 12 | +- [ ] 📝 Documentation update |
| 13 | +- [ ] 🎨 Code style update (formatting, renaming) |
| 14 | +- [ ] ♻️ Refactoring (no functional changes) |
| 15 | +- [ ] ⚡ Performance improvement |
| 16 | +- [ ] ✅ Test update |
| 17 | +- [ ] 🔧 Build/config update |
| 18 | +- [ ] 🔒 Security fix |
| 19 | + |
| 20 | +## Related Issues |
| 21 | + |
| 22 | +<!-- Link to related issues using #issue_number --> |
| 23 | + |
| 24 | +Closes # |
| 25 | +Related to # |
| 26 | + |
| 27 | +## Changes Made |
| 28 | + |
| 29 | +<!-- List the specific changes made in this PR --> |
| 30 | + |
| 31 | +- |
| 32 | +- |
| 33 | +- |
| 34 | + |
| 35 | +## Testing |
| 36 | + |
| 37 | +<!-- Describe the tests you ran to verify your changes --> |
| 38 | + |
| 39 | +- [ ] All existing tests pass |
| 40 | +- [ ] Added new tests for new functionality |
| 41 | +- [ ] Tested on multiple Python versions (3.10, 3.11, 3.12) |
| 42 | +- [ ] Tested on multiple platforms (Linux, macOS, Windows) |
| 43 | +- [ ] Manual testing performed |
| 44 | + |
| 45 | +### Test Commands Run |
| 46 | + |
| 47 | +```bash |
| 48 | +# Example: |
| 49 | +pytest tests/ |
| 50 | +pytest -m "not llm" # Skip LLM tests that require API key |
| 51 | +``` |
| 52 | + |
| 53 | +## Checklist |
| 54 | + |
| 55 | +<!-- Mark completed items with an 'x' --> |
| 56 | + |
| 57 | +- [ ] My code follows the project's code style (Black, Ruff) |
| 58 | +- [ ] I have performed a self-review of my code |
| 59 | +- [ ] I have commented my code, particularly in hard-to-understand areas |
| 60 | +- [ ] I have made corresponding changes to the documentation |
| 61 | +- [ ] My changes generate no new warnings |
| 62 | +- [ ] I have added tests that prove my fix is effective or that my feature works |
| 63 | +- [ ] New and existing unit tests pass locally with my changes |
| 64 | +- [ ] Any dependent changes have been merged and published |
| 65 | +- [ ] I have updated the CHANGELOG.md (if applicable) |
| 66 | +- [ ] Pre-commit hooks pass without errors |
| 67 | + |
| 68 | +## Screenshots (if applicable) |
| 69 | + |
| 70 | +<!-- Add screenshots to help explain your changes --> |
| 71 | + |
| 72 | +## Additional Context |
| 73 | + |
| 74 | +<!-- Add any other context about the PR here --> |
| 75 | + |
| 76 | +## License Acknowledgment |
| 77 | + |
| 78 | +- [ ] I confirm that my contributions are made under the Fair Source License 0.9 and will automatically convert to Apache 2.0 on January 1, 2029 |
| 79 | +- [ ] I have read and agree to the [Contributing Guidelines](../CONTRIBUTING.md) |
| 80 | + |
| 81 | +--- |
| 82 | + |
| 83 | +**For Reviewers:** |
| 84 | + |
| 85 | +- [ ] Code quality and style |
| 86 | +- [ ] Test coverage |
| 87 | +- [ ] Documentation updates |
| 88 | +- [ ] Breaking changes identified |
| 89 | +- [ ] Security considerations reviewed |
| 90 | +- [ ] Performance impact assessed |
0 commit comments