Spaces:
Running
Running
File size: 885 Bytes
243c6d6 4e536d0 243c6d6 010ff90 243c6d6 010ff90 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
[project]
authors = [{name = "T145"}]
description = "Chat with ZEUS!"
name = "ChatDemo"
requires-python = "< 3.11"
version = "1.0.0"
dependencies = ["llama-cpp-python>=0.3.5,<0.4"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge", "huggingface"]
platforms = ["win-64"]
# [tool.pixi.pypi-dependencies]
# chatdemo = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
gradio = "==5.0.1"
huggingface_hub = "==0.25.2"
ruff = ">=0.8.4,<0.9"
[tool.ruff]
exclude = [".pixi", "__pycache__"]
ignore = ["E501", "E402"]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# Warnings
"W",
# isort
"I",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-quotes
"Q",
# flake8-async
"ASYNC"
]
line-length = 132
|