File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,8 @@ export class Server {
236236 event . properties . read_only_mode = this . userConfig . readOnly ? "true" : "false" ;
237237 event . properties . disabled_tools = this . userConfig . disabledTools || [ ] ;
238238 event . properties . confirmation_required_tools = this . userConfig . confirmationRequiredTools || [ ] ;
239+ event . properties . previewFeatures = this . userConfig . previewFeatures ;
240+ event . properties . embeddingProviderConfigured = ! ! this . userConfig . voyageApiKey ;
239241 }
240242 if ( command === "stop" ) {
241243 event . properties . runtime_duration_ms = Date . now ( ) - this . startTime ;
Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ export type ServerEventProperties = {
4545 read_only_mode ?: TelemetryBoolSet ;
4646 disabled_tools ?: string [ ] ;
4747 confirmation_required_tools ?: string [ ] ;
48+ previewFeatures ?: string [ ] ;
49+ embeddingProviderConfigured ?: boolean ;
4850} ;
4951
5052export type ServerEvent = TelemetryEvent < ServerEventProperties > ;
You can’t perform that action at this time.
0 commit comments