File size: 662 Bytes
6929c27 |
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 |
[tool.poetry]
name = "genai"
version = "0.1.0"
description = ""
authors = ["Samuel"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
torch = {version = "^2.2.1+cu118", source = "pytorch"}
torchvision = {version = "^0.17.1+cu118", source = "pytorch"}
torchaudio = {version = "^2.2.1+cu118", source = "pytorch"}
transformers = "^4.38.1"
langchain = "^0.1.9"
gradio = "^4.19.2"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
ruff = "^0.2.2"
pytest = "^8.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|