Spaces:
Runtime error
Runtime error
File size: 650 Bytes
cb2f301 0803c7d 997e239 d07a63b cb2f301 |
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 |
[tool.poetry]
name = "llmops-with-haystack"
version = "0.1.0"
description = ""
authors = ["Laura Gutierrez Funderburk <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
torch = [
{url = "https://download.pytorch.org/whl/cpu/torch-1.10.0%2Bcpu-cp39-cp39-linux_x86_64.whl", markers = "sys_platform == 'linux'"},
]
farm-haystack = {extras = ["inference"], version = "^1.20.1"}
chainlit = "^0.7.0"
openai = "^0.28.0"
jupyter = "^1.0.0"
ipykernel = "^6.25.2"
python-dotenv = "^1.0.0"
datasets = "^2.14.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|