Spaces:
Sleeping
Sleeping
[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" | |