feat: slot system + entries/priority/errorreport + typert generator

This commit is contained in:
imccyu
2026-08-13 01:24:12 +08:00
parent eec7f2ec74
commit 0367506471
28 files changed
+777 -165

No files matched your search

+5 -1
View File
@@ -33,7 +33,11 @@ export interface ApiProxy {
llm: LlmApi
/** Host-only download surfaces (GET, no wire envelope); absent from IApiClient. */
downloads: DownloadsApi
/** Response entry for server-requests (client-response, echoing their rpcId); not a domain method (four-quadrant model). */
/**
* Response entry for server requests; not a domain method.
* @param message - Client response carrying the server request's rpcId.
* @returns Transport receipt for the response delivery.
*/
respond(message: ClientResponse): Promise<RpcReceipt>
}