Readd removed commits (#5167)

This commit is contained in:
Aaron Perez 2026-03-19 17:32:45 -05:00 committed by GitHub
parent 1c1ae1a1f7
commit c4006bdb4e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 354 additions and 73 deletions

View file

@ -23,6 +23,7 @@ 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]: ...
@ -41,5 +42,6 @@ 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.")