Add workflow runs links from scheduler pages (#SKY-8468) (#5162)

Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
This commit is contained in:
Shuchang Zheng 2026-03-19 14:19:07 -07:00 committed by GitHub
parent 7ed9cfebac
commit 1d2a398cbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 645 additions and 421 deletions

View file

@ -23,7 +23,6 @@ class LLMAPIHandler(Protocol):
raw_response: bool = False,
window_dimension: Resolution | None = None,
force_dict: bool = True,
system_prompt: str | None = None,
) -> Awaitable[dict[str, Any] | Any]: ...
@ -42,6 +41,5 @@ async def dummy_llm_api_handler(
raw_response: bool = False,
window_dimension: Resolution | None = None,
force_dict: bool = True,
system_prompt: str | None = None,
) -> dict[str, Any] | Any:
raise NotImplementedError("Your LLM provider is not configured. Please configure it in the .env file.")