File size: 902 Bytes
22d5f88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "moshi-hf"
version = "0.1.0"
description = "Moshi HuggingFace inference server"
requires-python = ">=3.8"
dependencies = [
    "torch==2.4.1",
    "torchaudio==2.4.1",
    "torchvision==0.19.1", 
    "torchdata==0.10.0",
    "transformers==4.46.3",
    "huggingface-hub==0.27.1",
    "safetensors==0.5.1",
    "accelerate>=0.20.0",
    "datasets==3.1.0",
    "requests==2.32.3",
    "urllib3==2.2.3",
    "pyyaml==6.0.2",
    "einops>=0.6.1",
    "ulid-py==1.1.0",
    "tqdm>=4.65.0",
    "sentencepiece==0.2.0",
    "jiwer==3.0.5",
    "numpy==1.24.4",
    "pandas==2.0.3",
    "scikit-learn==1.5.2",
    "pydub==0.25.1",
    "librosa==0.10.2.post1",
    "pyannote.audio==3.1.1",
    "pesq==0.0.4",
    "torchmetrics==1.6.0",
    "uvicorn==0.25.0",
    "fastapi==0.104.1",
    "pydantic==2.5.2"
]