Contribution Flow
Fork repo → Create branch → Work locally → Run tests → Commit → Push → PR → Review → Merge
1. Fork the Repository
https://github.com/atriva-ai/ai-inference-ov
2. Create a branch
git checkout -b feature/my-first-fix
3. Run tests before committing
python tests/test_image_classification.py
4. Push your branch
git push origin feature/my-first-fix
5. Open a Pull Request
- Write clear description
- Link the issue
- Keep PR small and focused
6. Participate in Review
- Apply feedback
- Ask questions
- Learn the project structure