First off, thank you for considering contributing to AI LectureForge! It's people like you that make AI LectureForge such a great tool.
By participating in this project, you are expected to uphold our Code of Conduct:
- Use welcoming and inclusive language
- Be respectful of differing viewpoints and experiences
- Gracefully accept constructive criticism
- Focus on what is best for the community
- Show empathy towards other community members
Before creating bug reports, please check the issue list as you might find out that you don't need to create one. When you are creating a bug report, please include as many details as possible:
- Use a clear and descriptive title
- Describe the exact steps which reproduce the problem
- Provide specific examples to demonstrate the steps
- Describe the behavior you observed after following the steps
- Explain which behavior you expected to see instead and why
- Include screenshots if possible
If you have a suggestion for the project, we'd love to hear it. Enhancement suggestions are tracked as GitHub issues. When creating an enhancement suggestion, please include:
- A clear and descriptive title
- A detailed description of the proposed enhancement
- Examples of how the enhancement would be used
- Any potential drawbacks or challenges
- Fork the repo and create your branch from
main
- If you've added code that should be tested, add tests
- If you've changed APIs, update the documentation
- Ensure the test suite passes
- Make sure your code follows the existing style
- Issue that pull request!
-
Create a new branch:
git checkout -b feature/my-feature # or git checkout -b bugfix/my-bugfix
-
Make your changes and commit:
git add . git commit -m "Description of changes"
-
Push to your fork:
git push origin feature/my-feature
- Follow PEP 8 style guide for Python code
- Use descriptive variable names
- Comment your code when necessary
- Keep functions focused and modular
- Use type hints where possible
- Write unit tests for new features
- Ensure all tests pass before submitting PR
- Include both positive and negative test cases
transcript_transformer/
├── src/
│ ├── core/ # Core transformation logic
│ ├── utils/ # Utility functions
│ └── app.py # Main application
├── tests/ # Test files
└── requirements.txt # Project dependencies
If you need help, you can:
- Open an issue with your question
- Reach out to the maintainers
- Check the documentation
Thank you for contributing to AI LectureForge! 🎓✨