This PR adds a new toolkit for integrating with Zendesk Help Center and ticketing system. Features - Search Articles: Search Help Center knowledge base with filters for text, categories, labels, and dates - List Tickets: Retrieve all open support tickets - Get Comments: Retrieve all comments for a specific ticket to understand the context - Add Comments: Add public or internal comments to existing tickets - Solve Tickets: Mark tickets as solved with optional internal resolution comments Testing & Quality - Comprehensive test suite - Evaluation scripts for real-world testing - All tests passing (make test) - Code quality checks passing (make check) - All evals passing --------- Co-authored-by: “lgesuellip” <“lgesuellipinto@uade.edu.ar”> Co-authored-by: lgesuellip <102637283+lgesuellip@users.noreply.github.com> Co-authored-by: “lgesuellip” <lgesuellipinto@uade.edu.ar>
46 lines
633 B
TOML
46 lines
633 B
TOML
target-version = "py310"
|
|
line-length = 100
|
|
fix = true
|
|
|
|
[lint]
|
|
select = [
|
|
# flake8-2020
|
|
"YTT",
|
|
# flake8-bandit
|
|
"S",
|
|
# flake8-bugbear
|
|
"B",
|
|
# flake8-builtins
|
|
"A",
|
|
# flake8-comprehensions
|
|
"C4",
|
|
# flake8-debugger
|
|
"T10",
|
|
# flake8-simplify
|
|
"SIM",
|
|
# isort
|
|
"I",
|
|
# mccabe
|
|
"C90",
|
|
# pycodestyle
|
|
"E", "W",
|
|
# pyflakes
|
|
"F",
|
|
# pygrep-hooks
|
|
"PGH",
|
|
# pyupgrade
|
|
"UP",
|
|
# ruff
|
|
"RUF",
|
|
# tryceratops
|
|
"TRY",
|
|
]
|
|
|
|
ignore = ["C901"]
|
|
|
|
[lint.per-file-ignores]
|
|
"**/tests/*" = ["S101"]
|
|
|
|
[format]
|
|
preview = true
|
|
skip-magic-trailing-comma = false
|