• 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_speachestestssse_test.py
Download as .zip file
File name
Commit message
Commit date
.github/workflows
ci: update how images are tagged, enable multi-arch builds
2024-06-03
examples
chore: update docker tag to latest
2024-06-03
faster_whisper_server
fix task enum vals, fix env var parsing, improve gradio, use uv in dockerfile
2024-06-23
pre-commit-scripts
misc: remove custom pre-commit ruff hooks
2024-06-23
tests
misc: tests
2024-06-23
.dockerignore
chore: ignore .env
2024-05-27
.envrc
init
2024-05-20
.gitattributes
docs: add live-transcription demo
2024-05-28
.gitignore
deps: add aider
2024-06-23
.pre-commit-config.yaml
misc: remove custom pre-commit ruff hooks
2024-06-23
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
Update README.md
2024-06-26
Taskfile.yaml
ci: update how images are tagged, enable multi-arch builds
2024-06-03
audio.wav
docs: update README.md
2024-05-27
compose.yaml
chore: update docker tag to latest
2024-06-03
flake.lock
init
2024-05-20
flake.nix
fix task enum vals, fix env var parsing, improve gradio, use uv in dockerfile
2024-06-23
lsyncd.conf
chore: add lsyncd config
2024-06-03
poetry.lock
move deps
2024-06-23
pyproject.toml
move deps
2024-06-23
requirements.txt
fix task enum vals, fix env var parsing, improve gradio, use uv in dockerfile
2024-06-23
File name
Commit message
Commit date
__init__.py
feat: add /v1/models and /v1/model routes #14
2024-06-03
api_model_test.py
misc: tests
2024-06-23
app_test.py
misc: tests
2024-06-23
conftest.py
misc: tests
2024-06-23
sse_test.py
misc: tests
2024-06-23
Fedir Zadniprovskyi 2024-06-23 8a8f823 misc: tests UNIX
Raw Open in browser Change history
import json import os import pytest from fastapi.testclient import TestClient from httpx_sse import connect_sse from faster_whisper_server.server_models import ( TranscriptionJsonResponse, TranscriptionVerboseJsonResponse, ) FILE_PATHS = ["audio.wav"] # HACK ENDPOINTS = [ "/v1/audio/transcriptions", "/v1/audio/translations", ] parameters = [ (file_path, endpoint) for endpoint in ENDPOINTS for file_path in FILE_PATHS ] @pytest.mark.parametrize("file_path,endpoint", parameters) def test_streaming_transcription_text( client: TestClient, file_path: str, endpoint: str ): extension = os.path.splitext(file_path)[1] with open(file_path, "rb") as f: data = f.read() kwargs = { "files": {"file": (f"audio.{extension}", data, f"audio/{extension}")}, "data": {"response_format": "text", "stream": True}, } with connect_sse(client, "POST", endpoint, **kwargs) as event_source: for event in event_source.iter_sse(): print(event) assert ( len(event.data) > 1 ) # HACK: 1 because of the space character that's always prepended @pytest.mark.parametrize("file_path,endpoint", parameters) def test_streaming_transcription_json( client: TestClient, file_path: str, endpoint: str ): extension = os.path.splitext(file_path)[1] with open(file_path, "rb") as f: data = f.read() kwargs = { "files": {"file": (f"audio.{extension}", data, f"audio/{extension}")}, "data": {"response_format": "json", "stream": True}, } with connect_sse(client, "POST", endpoint, **kwargs) as event_source: for event in event_source.iter_sse(): TranscriptionJsonResponse(**json.loads(event.data)) @pytest.mark.parametrize("file_path,endpoint", parameters) def test_streaming_transcription_verbose_json( client: TestClient, file_path: str, endpoint: str ): extension = os.path.splitext(file_path)[1] with open(file_path, "rb") as f: data = f.read() kwargs = { "files": {"file": (f"audio.{extension}", data, f"audio/{extension}")}, "data": {"response_format": "verbose_json", "stream": True}, } with connect_sse(client, "POST", endpoint, **kwargs) as event_source: for event in event_source.iter_sse(): TranscriptionVerboseJsonResponse(**json.loads(event.data))

          
        
    
    
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