Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt the contributing guide + PR template. #8

Merged
merged 2 commits into from
Feb 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Checklist

- [ ] Read CONTRIBUTING.md, and accept the CLA by including the provided snippet. We will not accept PR without this.
- [ ] Run pre-commit hook.
- [ ] If you changed Rust code, run `cargo check`, `cargo clippy`, `cargo test`.

## PR Description

<!-- Description for the PR -->
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Contributing to Moshi
# Contributing to Hibiki

## Pull Requests

Moshi is the implementation of a research paper.
MHibiki is the implementation of a research paper.
Therefore, we do not plan on accepting many pull requests for new features.
However, we certainly welcome them for bug fixes.

Expand Down Expand Up @@ -52,6 +52,6 @@ Please submit issues on our Github repository.

## License

By contributing to Moshi, you agree that your contributions will be licensed
By contributing to Hibiki, you agree that your contributions will be licensed
under the LICENSE-* files in the root directory of this source tree.
In particular, the rust code is licensed under APACHE, and the python code under MIT.
2 changes: 1 addition & 1 deletion hibiki-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "hibiki"
version = "0.1.1"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Hibiki, a real-time speech-to-speech translation"
description = "Hibiki, a real-time speech-to-speech translation model"
repository = "https://github.com/kyutai-labs/hibiki"
keywords = ["machine-learning", "audio"]
categories = ["science"]
Expand Down
Loading