whisperpipe 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ """
2
+ whisperpipe - Real-time speech-to-text streaming with OpenAI Whisper
3
+
4
+ A powerful, easy-to-use package for real-time audio transcription using OpenAI's Whisper model.
5
+ Features include callback support for LLM integration and pause/resume functionality.
6
+ """
7
+
8
+ from .core import pipeStream
9
+
10
+ __version__ = "1.0.0"
11
+ __author__ = "Erfan Ramezani"
12
+ __email__ = "erfanramezany245@gmail.com"
13
+
14
+ __all__ = ["pipeStream"]