qfuxa commited on
Commit
dc789f0
·
1 Parent(s): 0bd51b3
README.md CHANGED
@@ -1,6 +1,11 @@
1
  <h1 align="center">WhisperLiveKit</h1>
2
  <p align="center"><b>Real-time, Fully Local Whisper's Speech-to-Text and Speaker Diarization</b></p>
3
 
 
 
 
 
 
4
 
5
  This project is based on [Whisper Streaming](https://github.com/ufal/whisper_streaming) and lets you transcribe audio directly from your browser. Simply launch the local server and grant microphone access. Everything runs locally on your machine ✨
6
 
 
1
  <h1 align="center">WhisperLiveKit</h1>
2
  <p align="center"><b>Real-time, Fully Local Whisper's Speech-to-Text and Speaker Diarization</b></p>
3
 
4
+ <p align="center">
5
+ <img alt="PyPI Version" src="https://img.shields.io/pypi/v/whisperlivekit?color=g">
6
+ <img alt="PyPI Downloads" src="https://static.pepy.tech/personalized-badge/whisperlivekit">
7
+ <img alt="Python Versions" src="https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-dark_green">
8
+ </p>
9
 
10
  This project is based on [Whisper Streaming](https://github.com/ufal/whisper_streaming) and lets you transcribe audio directly from your browser. Simply launch the local server and grant microphone access. Everything runs locally on your machine ✨
11
 
setup.py CHANGED
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
 
3
  setup(
4
  name="whisperlivekit",
5
- version="0.1.0",
6
  description="Real-time, Fully Local Whisper's Speech-to-Text and Speaker Diarization",
7
  long_description=open("README.md", "r", encoding="utf-8").read(),
8
  long_description_content_type="text/markdown",
 
2
 
3
  setup(
4
  name="whisperlivekit",
5
+ version="0.1.2",
6
  description="Real-time, Fully Local Whisper's Speech-to-Text and Speaker Diarization",
7
  long_description=open("README.md", "r", encoding="utf-8").read(),
8
  long_description_content_type="text/markdown",
whisperlivekit/diarization/__init__.py ADDED
File without changes
whisperlivekit/web/__init__.py ADDED
File without changes
whisperlivekit/whisper_streaming_custom/__init__.py ADDED
File without changes