Closed maciejmajek closed 1 week ago
@coderabbitai full review
The changes involve updates to the pyproject.toml
file, focusing on dependency management. A new optional dependency group named local_asr
has been introduced, which includes the openai-whisper
library. Dependencies openai-whisper
and torchaudio
have been removed from the main dependencies list, indicating a restructuring of how these libraries are organized. The existing optional groups, openset
and nomad
, remain unchanged, and the overall structure of the build-system
, isort
, and pytest
configurations is preserved.
File | Change Summary |
---|---|
pyproject.toml | - Added new optional group: [tool.poetry.group.local_asr] |
- Added dependency to local_asr : openai-whisper = "^20231117" |
|
- Removed openai-whisper from main dependencies |
|
- Removed torchaudio from main dependencies |
|
- Existing optional groups openset and nomad remain unchanged |
|
- build-system , isort , and pytest configurations unchanged |
In the garden of code, a new group does bloom,
With whispers of OpenAI, dispelling the gloom.
Dependencies dance, some take their leave,
Whilelocal_asr
joins, a change to believe.
Hops of reorganization, a structure refined,
In the world of Python, new paths we will find! 🐇✨
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Purpose
RAI's default python environment takes a lot of time to install. Some of the dependencies should be marked as optional.
Proposed Changes
Moved non-core dependencies to optional category
Issues
Testing
Summary by CodeRabbit
New Features
openai-whisper
.Bug Fixes
torchaudio
dependency to streamline performance.