Spaces:
Sleeping
Sleeping
File size: 560 Bytes
41d24d2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[tool.poetry]
name = "llmlib"
version = "0.1.0"
description = ""
authors = ["Tomas Ruiz <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
bugsnag = "^4.7.1"
decord = "^0.6.0"
google-cloud-aiplatform = "^1.64"
# I cannot add the dependencies below. I suspect that torch is a build-time dependency for flash-attn, or something like that.
# transformers = "^4.44.2"
# accelerate = "^0.34.2"
# flash-attn = "^2.6.3"
# torch = "^2.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|