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>
15 lines
286 B
Python
15 lines
286 B
Python
from arcade_zendesk.tools import (
|
|
add_ticket_comment,
|
|
get_ticket_comments,
|
|
list_tickets,
|
|
mark_ticket_solved,
|
|
search_articles,
|
|
)
|
|
|
|
__all__ = [
|
|
"list_tickets",
|
|
"add_ticket_comment",
|
|
"get_ticket_comments",
|
|
"mark_ticket_solved",
|
|
"search_articles",
|
|
]
|