-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathrpc.ts
More file actions
208 lines (195 loc) · 4.91 KB
/
Copy pathrpc.ts
File metadata and controls
208 lines (195 loc) · 4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/**
* AUTO-GENERATED FILE - DO NOT EDIT
* Generated from: api.schema.json
*/
import type { MessageConnection } from "vscode-jsonrpc/node.js";
export interface PingResult {
/**
* Echoed message (or default greeting)
*/
message: string;
/**
* Server timestamp in milliseconds
*/
timestamp: number;
/**
* Server protocol version number
*/
protocolVersion: number;
}
export interface PingParams {
/**
* Optional message to echo back
*/
message?: string;
}
export interface ModelsListResult {
/**
* List of available models with full metadata
*/
models: {
/**
* Model identifier (e.g., "claude-sonnet-4.5")
*/
id: string;
/**
* Display name
*/
name: string;
/**
* Model capabilities and limits
*/
capabilities: {
supports: {
vision: boolean;
/**
* Whether this model supports reasoning effort configuration
*/
reasoningEffort: boolean;
};
limits: {
max_prompt_tokens?: number;
max_output_tokens?: number;
max_context_window_tokens: number;
};
};
/**
* Policy state (if applicable)
*/
policy?: {
state: string;
terms: string;
};
/**
* Billing information
*/
billing?: {
multiplier: number;
};
/**
* Supported reasoning effort levels (only present if model supports reasoning effort)
*/
supportedReasoningEfforts?: string[];
/**
* Default reasoning effort level (only present if model supports reasoning effort)
*/
defaultReasoningEffort?: string;
}[];
}
export interface ToolsListResult {
/**
* List of available built-in tools with metadata
*/
tools: {
/**
* Tool identifier (e.g., "bash", "grep", "str_replace_editor")
*/
name: string;
/**
* Optional namespaced name for declarative filtering (e.g., "playwright/navigate" for MCP tools)
*/
namespacedName?: string;
/**
* Description of what the tool does
*/
description: string;
/**
* JSON Schema for the tool's input parameters
*/
parameters?: {
[k: string]: unknown;
};
/**
* Optional instructions for how to use this tool effectively
*/
instructions?: string;
}[];
}
export interface ToolsListParams {
/**
* Optional model ID — when provided, the returned tool list reflects model-specific overrides
*/
model?: string;
}
export interface AccountGetQuotaResult {
/**
* Quota snapshots keyed by type (e.g., chat, completions, premium_interactions)
*/
quotaSnapshots: {
[k: string]: {
/**
* Number of requests included in the entitlement
*/
entitlementRequests: number;
/**
* Number of requests used so far this period
*/
usedRequests: number;
/**
* Percentage of entitlement remaining
*/
remainingPercentage: number;
/**
* Number of overage requests made this period
*/
overage: number;
/**
* Whether pay-per-request usage is allowed when quota is exhausted
*/
overageAllowedWithExhaustedQuota: boolean;
/**
* Date when the quota resets (ISO 8601)
*/
resetDate?: string;
};
};
}
export interface SessionModelGetCurrentResult {
modelId?: string;
}
export interface SessionModelGetCurrentParams {
/**
* Target session identifier
*/
sessionId: string;
}
export interface SessionModelSwitchToResult {
modelId?: string;
}
export interface SessionModelSwitchToParams {
/**
* Target session identifier
*/
sessionId: string;
modelId: string;
}
/** Create typed server-scoped RPC methods (no session required). */
export function createServerRpc(connection: MessageConnection) {
return {
ping: async (params: PingParams): Promise<PingResult> =>
connection.sendRequest("ping", params),
models: {
list: async (): Promise<ModelsListResult> =>
connection.sendRequest("models.list", {}),
},
tools: {
list: async (params: ToolsListParams): Promise<ToolsListResult> =>
connection.sendRequest("tools.list", params),
},
account: {
getQuota: async (): Promise<AccountGetQuotaResult> =>
connection.sendRequest("account.getQuota", {}),
},
};
}
/** Create typed session-scoped RPC methods. */
export function createSessionRpc(connection: MessageConnection, sessionId: string) {
return {
model: {
getCurrent: async (): Promise<SessionModelGetCurrentResult> =>
connection.sendRequest("session.model.getCurrent", { sessionId }),
switchTo: async (params: Omit<SessionModelSwitchToParams, "sessionId">): Promise<SessionModelSwitchToResult> =>
connection.sendRequest("session.model.switchTo", { sessionId, ...params }),
},
};
}