File size: 480 Bytes
0a632f8
 
 
 
 
 
 
082d9d1
 
 
0a632f8
 
 
4f06daa
0a632f8
 
 
 
d39aaee
47d6cc1
 
 
 
 
 
 
 
 
 
20d974d
824e67f
 
 
0a632f8
d39aaee
 
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
[project]
name = "anychat"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
    "gradio>=5.0.0",
    "huggingface-hub>=0.30.0",
    "modelscope-studio>=1.2.0",
]

[tool.uv.sources]


[tool.ruff]
line-length = 119

[tool.ruff.lint]
select = [
    "E",
    "F",
    #"I",
    "N",
    "S",
    "T",
    "UP",
    "W",
]
ignore = ["T201"]
unfixable = [
    "F401", # unused-import
]

[tool.ruff.format]
docstring-code-format = true