Spaces:
Running
Running
File size: 551 Bytes
29b1b0f 793a0d3 29b1b0f 793a0d3 29b1b0f |
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 |
[project]
name = "recommend"
version = "1"
description = "Default template for PDM package"
authors = [
{name = "kauabarros-24", email = "[email protected]"},
]
dependencies = [
"fastapi>=0.115.3",
"uvicorn[standard]>=0.32.0",
"transformers>=4.46.0",
"torch>=2.5.0",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = true
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
fast = "uvicorn src.recommend.main:app --reload"
|