├── .gitignore ├── CLAUDE.md ├── Dockerfile ├── LICENSE ├── README-zh.md ├── README.md ├── README_FastAPI.md ├── check_db.py ├── docker-compose-cpu-cn.yml ├── docker-compose-cpu.yml ├── docker-compose-cuda-all-cn.yml ├── docker-compose-cuda-cn.yml ├── docker-compose-cuda.yml ├── redisFiles └── redis.conf ├── run.py ├── src ├── core │ ├── __init__.py │ ├── config.py │ ├── dependencies.py │ ├── logging_config.py │ ├── rate_limiter.py │ ├── services.py │ └── translation_service.py ├── db │ ├── __init__.py │ ├── base.py │ └── models.py ├── filter.json ├── main.py ├── requirements.txt ├── routers │ ├── __init__.py │ ├── api.py │ ├── manage_api.py │ └── ui.py ├── schemas │ ├── __init__.py │ └── user.py ├── server.py ├── serverstart.py └── templates │ ├── login.html │ ├── manage_users.html │ └── stats.html ├── test_translate.py ├── 修改文档.md └── 迁移文档.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/README.md -------------------------------------------------------------------------------- /README_FastAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/README_FastAPI.md -------------------------------------------------------------------------------- /check_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/check_db.py -------------------------------------------------------------------------------- /docker-compose-cpu-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/docker-compose-cpu-cn.yml -------------------------------------------------------------------------------- /docker-compose-cpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/docker-compose-cpu.yml -------------------------------------------------------------------------------- /docker-compose-cuda-all-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/docker-compose-cuda-all-cn.yml -------------------------------------------------------------------------------- /docker-compose-cuda-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/docker-compose-cuda-cn.yml -------------------------------------------------------------------------------- /docker-compose-cuda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/docker-compose-cuda.yml -------------------------------------------------------------------------------- /redisFiles/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/redisFiles/redis.conf -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/run.py -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/__init__.py -------------------------------------------------------------------------------- /src/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/config.py -------------------------------------------------------------------------------- /src/core/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/dependencies.py -------------------------------------------------------------------------------- /src/core/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/logging_config.py -------------------------------------------------------------------------------- /src/core/rate_limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/rate_limiter.py -------------------------------------------------------------------------------- /src/core/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/services.py -------------------------------------------------------------------------------- /src/core/translation_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/core/translation_service.py -------------------------------------------------------------------------------- /src/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/db/base.py -------------------------------------------------------------------------------- /src/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/db/models.py -------------------------------------------------------------------------------- /src/filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/filter.json -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/main.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routers/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/routers/api.py -------------------------------------------------------------------------------- /src/routers/manage_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/routers/manage_api.py -------------------------------------------------------------------------------- /src/routers/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/routers/ui.py -------------------------------------------------------------------------------- /src/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/schemas/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/schemas/user.py -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/server.py -------------------------------------------------------------------------------- /src/serverstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/serverstart.py -------------------------------------------------------------------------------- /src/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/templates/login.html -------------------------------------------------------------------------------- /src/templates/manage_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/templates/manage_users.html -------------------------------------------------------------------------------- /src/templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/src/templates/stats.html -------------------------------------------------------------------------------- /test_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/test_translate.py -------------------------------------------------------------------------------- /修改文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/修改文档.md -------------------------------------------------------------------------------- /迁移文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceLinkVR/VoiceLinkServer/HEAD/迁移文档.md --------------------------------------------------------------------------------