MCPcopy Index your code
hub / github.com/github/copilot-sdk / delete

Method delete

python/copilot/generated/rpc.py:25743–25745  ·  view source on GitHub ↗

Deletes the session plan file from the workspace.

(self, *, timeout: float | None = None)

Source from the content-addressed store, hash-verified

25741 await self._client.request("session.plan.update", params_dict, **_timeout_kwargs(timeout))
25742
25743 async def delete(self, *, timeout: float | None = None) -> None:
25744 "Deletes the session plan file from the workspace."
25745 await self._client.request("session.plan.delete", {"sessionId": self._session_id}, **_timeout_kwargs(timeout))
25746
25747 async def read_sql_todos(self, *, timeout: float | None = None) -> PlanReadSQLTodosResult:
25748 "Reads todo rows from the session SQL database for plan rendering.\n\nReturns:\n Todo rows read from the session SQL database. Empty when no session database is available."

Calls 2

_timeout_kwargsFunction · 0.85
requestMethod · 0.45