Gradio 4 + WebUI 1.10

This commit is contained in:
layerdiffusion
2024-07-26 08:51:34 -07:00
parent e95333c556
commit e26abf87ec
201 changed files with 7562 additions and 4834 deletions

View File

@@ -2,6 +2,8 @@
target-version = "py39"
[tool.ruff.lint]
extend-select = [
"B",
"C",
@@ -29,10 +31,10 @@ ignore = [
"W605", # invalid escape sequence, messes with some docstrings
]
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"webui.py" = ["E402"] # Module level import not at top of file
[tool.ruff.flake8-bugbear]
[tool.ruff.lint.flake8-bugbear]
# Allow default arguments like, e.g., `data: List[str] = fastapi.Query(None)`.
extend-immutable-calls = ["fastapi.Depends", "fastapi.security.HTTPBasic"]