Co-authored-by: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
Mathias Gesbert 2026-03-23 21:59:24 +01:00 committed by GitHub
parent 7b8a66bc6c
commit 5ea69b547b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 88 additions and 378 deletions

View file

@ -6,7 +6,7 @@ from acp import (
Agent as AcpAgent,
Client,
CreateTerminalResponse,
KillTerminalResponse,
KillTerminalCommandResponse,
ReadTextFileResponse,
ReleaseTerminalResponse,
RequestPermissionResponse,
@ -112,7 +112,7 @@ class FakeClient(Client):
async def kill_terminal(
self, session_id: str, terminal_id: str, **kwargs: Any
) -> KillTerminalResponse | None:
) -> KillTerminalCommandResponse | None:
raise NotImplementedError()
async def ext_method(self, method: str, params: dict[str, Any]) -> dict[str, Any]: