• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
yjyoon / whisper_server_speaches star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
whisper_server_speachesfaster_whisper_serverserver_models.py
Download as .zip file
File name
Commit message
Commit date
.github/workflows
ci: add test action
2024-07-03
examples
Update script.sh
2024-09-03
faster_whisper_server
feat: ollama-like ps endpoints
2024-09-05
scripts
chore: minor changes to scripts/client.py
2024-09-05
tests
feat: handle srt and vtt response formats
2024-07-20
.dockerignore
chore: ignore .env
2024-05-27
.envrc
init
2024-05-20
.gitattributes
docs: add live-transcription demo
2024-05-28
.gitignore
chore: update .gitignore
2024-07-03
.pre-commit-config.yaml
switch to basedpyright
2024-07-20
Dockerfile.cpu
fix task enum vals, fix env var parsing, improve gradio, use uv in dockerfile
2024-06-23
Dockerfile.cuda
fix task enum vals, fix env var parsing, improve gradio, use uv in dockerfile
2024-06-23
LICENSE
init
2024-05-20
README.md
add tutorial for kubernetes
2024-09-04
Taskfile.yaml
chore: remove `lsyncd`
2024-09-05
audio.wav
docs: update README.md
2024-05-27
compose.yaml
chore: update docker tag to latest
2024-06-03
flake.lock
deps: update flake
2024-09-08
flake.nix
deps: update flake
2024-09-08
overrides.txt
deps: update
2024-07-16
pyproject.toml
deps: remove `other`
2024-09-08
requirements-all.txt
deps: remove `other`
2024-09-08
requirements-dev.txt
deps: remove `other`
2024-09-08
requirements.txt
deps: remove `other`
2024-09-08
File name
Commit message
Commit date
__init__.py
chore: rename to 'faster-whisper-server'
2024-05-27
asr.py
refactor
2024-07-20
audio.py
fix: Correct closing logic in AudioStream to prevent discarding remaining data
2024-07-17
config.py
feat: support model preloading (#66)
2024-09-05
core.py
chore: add a more descriptive assert error message (#58)
2024-08-27
gradio_app.py
refactor
2024-07-20
logger.py
chore: fix ruff errors
2024-07-03
main.py
feat: ollama-like ps endpoints
2024-09-05
server_models.py
refactor
2024-07-20
transcriber.py
refactor
2024-07-20
Fedir Zadniprovskyi 2024-07-20 4a548b6 refactor UNIX
Raw Open in browser Change history
from __future__ import annotations from typing import TYPE_CHECKING, Literal from pydantic import BaseModel, ConfigDict, Field from faster_whisper_server.core import Segment, Transcription, Word, segments_to_text if TYPE_CHECKING: from faster_whisper.transcribe import TranscriptionInfo # https://platform.openai.com/docs/api-reference/audio/json-object class TranscriptionJsonResponse(BaseModel): text: str @classmethod def from_segments(cls, segments: list[Segment]) -> TranscriptionJsonResponse: return cls(text=segments_to_text(segments)) @classmethod def from_transcription(cls, transcription: Transcription) -> TranscriptionJsonResponse: return cls(text=transcription.text) # https://platform.openai.com/docs/api-reference/audio/verbose-json-object class TranscriptionVerboseJsonResponse(BaseModel): task: str = "transcribe" language: str duration: float text: str words: list[Word] segments: list[Segment] @classmethod def from_segment(cls, segment: Segment, transcription_info: TranscriptionInfo) -> TranscriptionVerboseJsonResponse: return cls( language=transcription_info.language, duration=segment.end - segment.start, text=segment.text, words=(segment.words if isinstance(segment.words, list) else []), segments=[segment], ) @classmethod def from_segments( cls, segments: list[Segment], transcription_info: TranscriptionInfo ) -> TranscriptionVerboseJsonResponse: return cls( language=transcription_info.language, duration=transcription_info.duration, text=segments_to_text(segments), segments=segments, words=Word.from_segments(segments), ) @classmethod def from_transcription(cls, transcription: Transcription) -> TranscriptionVerboseJsonResponse: return cls( language="english", # FIX: hardcoded duration=transcription.duration, text=transcription.text, words=transcription.words, segments=[], # FIX: hardcoded ) class ModelListResponse(BaseModel): data: list[ModelObject] object: Literal["list"] = "list" class ModelObject(BaseModel): id: str """The model identifier, which can be referenced in the API endpoints.""" created: int """The Unix timestamp (in seconds) when the model was created.""" object_: Literal["model"] = Field(serialization_alias="object") """The object type, which is always "model".""" owned_by: str """The organization that owns the model.""" language: list[str] = Field(default_factory=list) """List of ISO 639-3 supported by the model. It's possible that the list will be empty. This field is not a part of the OpenAI API spec and is added for convenience.""" # noqa: E501 model_config = ConfigDict( populate_by_name=True, json_schema_extra={ "examples": [ { "id": "Systran/faster-whisper-large-v3", "created": 1700732060, "object": "model", "owned_by": "Systran", }, { "id": "Systran/faster-distil-whisper-large-v3", "created": 1711378296, "object": "model", "owned_by": "Systran", }, { "id": "bofenghuang/whisper-large-v2-cv11-french-ct2", "created": 1687968011, "object": "model", "owned_by": "bofenghuang", }, ] }, )

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up