Spaces:
Runtime error
Runtime error
[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 | |