Skip to content

Commit

Permalink
Merge pull request #40 from kadirnar/update-version_2
Browse files Browse the repository at this point in the history
🆙Update requirements.txt and version number
  • Loading branch information
kadirnar authored Jan 11, 2024
2 parents 1387df7 + 32e1e48 commit 83268f1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ pip install -r dev-requirements
```

```python
from wihsperplus.pipelines.chatbot import ChatWithVideo
from whisperplus.pipelines.chatbot import ChatWithVideo

input_file = "trascript.text"
input_file = "trascript.txt"
llm_model_name = "TheBloke/Mistral-7B-v0.1-GGUF"
llm_model_file = "mistral-7b-v0.1.Q4_K_M.gguf"
llm_model_type = "mistral"
Expand Down
17 changes: 13 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
gradio==4.7.1
--index-url https://download.pytorch.org/whl/cu118
torch==2.1.1
torchvision==0.16.1
torchaudio==2.1.1
gradio==4.14.0
lancedb==0.4.2
langchain==0.1.0
moviepy==1.0.3
numpy
numpy==1.24.1
pyannote.audio==3.1.0
pyannote.core==5.0.0
pyannote.database==5.0.1
pyannote.metrics==3.2.1
pyannote.pipeline==3.0.1
pytube==15.0.0
Requests==2.31.0
torch
torchaudio
setuptools==69.0.3
transformers==4.35.2
4 changes: 0 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def get_requirements(req_path: str):


INSTALL_REQUIRES = get_requirements("requirements.txt")
DEV_REQUIREMETNS = get_requirements("dev-requirements.txt")


def get_long_description():
Expand Down Expand Up @@ -51,7 +50,4 @@ def get_license():
long_description_content_type='text/markdown',
url='https://github.com/kadirnar/whisperplus',
install_requires=INSTALL_REQUIRES,
extras_require={
'dev': DEV_REQUIREMETNS,
},
)
2 changes: 1 addition & 1 deletion whisperplus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from whisperplus.utils.download_utils import download_and_convert_to_mp3
from whisperplus.utils.text_utils import format_speech_to_dialogue

__version__ = '0.2.3'
__version__ = '0.2.4'
__author__ = 'kadirnar'
__license__ = 'Apache License 2.0'
__all__ = ['']

0 comments on commit 83268f1

Please sign in to comment.