Spaces:
No application file
No application file
File size: 464 Bytes
598f7ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[project]
name = "KR_API"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "kauabarros-24", email = "[email protected]"},
]
dependencies = [
"transformers>=4.46.0",
"fastapi>=0.115.3",
"uvicorn>=0.32.0",
"torch>=2.5.0",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.scripts]
fast = "uvicorn src.kr_api.main:app --reload" |