@vscode/chat-lib 0.42.2026032703 → 0.43.2026033101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/dist/src/_internal/extension/inlineEdits/common/editRebase.d.ts +4 -5
  2. package/dist/src/_internal/extension/inlineEdits/common/editRebase.d.ts.map +1 -1
  3. package/dist/src/_internal/extension/inlineEdits/common/editRebase.js +8 -3
  4. package/dist/src/_internal/extension/inlineEdits/common/editRebase.js.map +1 -1
  5. package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts +2 -0
  6. package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts.map +1 -1
  7. package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js +149 -14
  8. package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js.map +1 -1
  9. package/dist/src/_internal/platform/authentication/common/authentication.d.ts +14 -6
  10. package/dist/src/_internal/platform/authentication/common/authentication.d.ts.map +1 -1
  11. package/dist/src/_internal/platform/authentication/common/authentication.js.map +1 -1
  12. package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts +6 -0
  13. package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts.map +1 -1
  14. package/dist/src/_internal/platform/authentication/common/copilotToken.js +1 -0
  15. package/dist/src/_internal/platform/authentication/common/copilotToken.js.map +1 -1
  16. package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.d.ts +4 -4
  17. package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.d.ts.map +1 -1
  18. package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.js.map +1 -1
  19. package/dist/src/_internal/platform/authentication/node/copilotTokenManager.d.ts.map +1 -1
  20. package/dist/src/_internal/platform/authentication/node/copilotTokenManager.js +1 -7
  21. package/dist/src/_internal/platform/authentication/node/copilotTokenManager.js.map +1 -1
  22. package/dist/src/_internal/platform/chat/common/chatQuotaService.d.ts +14 -0
  23. package/dist/src/_internal/platform/chat/common/chatQuotaService.d.ts.map +1 -1
  24. package/dist/src/_internal/platform/chat/common/chatQuotaService.js.map +1 -1
  25. package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.d.ts +2 -1
  26. package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.d.ts.map +1 -1
  27. package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.js +24 -0
  28. package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.js.map +1 -1
  29. package/dist/src/_internal/platform/chat/common/commonTypes.d.ts +1 -1
  30. package/dist/src/_internal/platform/chat/common/commonTypes.d.ts.map +1 -1
  31. package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +2 -0
  32. package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
  33. package/dist/src/_internal/platform/configuration/common/configurationService.js +2 -0
  34. package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
  35. package/dist/src/_internal/platform/endpoint/common/capiClient.d.ts.map +1 -1
  36. package/dist/src/_internal/platform/endpoint/common/capiClient.js +2 -1
  37. package/dist/src/_internal/platform/endpoint/common/capiClient.js.map +1 -1
  38. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +1 -0
  39. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -1
  40. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +11 -3
  41. package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
  42. package/dist/src/_internal/platform/endpoint/common/endpointTypes.d.ts +1 -0
  43. package/dist/src/_internal/platform/endpoint/common/endpointTypes.d.ts.map +1 -1
  44. package/dist/src/_internal/platform/endpoint/common/endpointTypes.js +1 -0
  45. package/dist/src/_internal/platform/endpoint/common/endpointTypes.js.map +1 -1
  46. package/dist/src/_internal/platform/endpoint/common/phaseDataContainer.d.ts +8 -2
  47. package/dist/src/_internal/platform/endpoint/common/phaseDataContainer.d.ts.map +1 -1
  48. package/dist/src/_internal/platform/endpoint/common/phaseDataContainer.js +26 -2
  49. package/dist/src/_internal/platform/endpoint/common/phaseDataContainer.js.map +1 -1
  50. package/dist/src/_internal/platform/endpoint/common/responseOutputMessageIdContainer.d.ts +19 -0
  51. package/dist/src/_internal/platform/endpoint/common/responseOutputMessageIdContainer.d.ts.map +1 -0
  52. package/dist/src/_internal/platform/endpoint/common/responseOutputMessageIdContainer.js +64 -0
  53. package/dist/src/_internal/platform/endpoint/common/responseOutputMessageIdContainer.js.map +1 -0
  54. package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js +1 -1
  55. package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js.map +1 -1
  56. package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts +9 -0
  57. package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts.map +1 -1
  58. package/dist/src/_internal/platform/endpoint/node/messagesApi.js +31 -11
  59. package/dist/src/_internal/platform/endpoint/node/messagesApi.js.map +1 -1
  60. package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts.map +1 -1
  61. package/dist/src/_internal/platform/endpoint/node/responsesApi.js +19 -6
  62. package/dist/src/_internal/platform/endpoint/node/responsesApi.js.map +1 -1
  63. package/dist/src/_internal/platform/git/common/gitService.d.ts +5 -0
  64. package/dist/src/_internal/platform/git/common/gitService.d.ts.map +1 -1
  65. package/dist/src/_internal/platform/git/common/gitService.js.map +1 -1
  66. package/dist/src/_internal/platform/github/common/githubService.d.ts +6 -5
  67. package/dist/src/_internal/platform/github/common/githubService.d.ts.map +1 -1
  68. package/dist/src/_internal/platform/github/common/githubService.js +0 -3
  69. package/dist/src/_internal/platform/github/common/githubService.js.map +1 -1
  70. package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.d.ts +0 -1
  71. package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.d.ts.map +1 -1
  72. package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.js +0 -3
  73. package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.js.map +1 -1
  74. package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.d.ts +2 -0
  75. package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.d.ts.map +1 -1
  76. package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js +5 -0
  77. package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js.map +1 -1
  78. package/dist/src/_internal/platform/networking/common/fetch.d.ts +2 -0
  79. package/dist/src/_internal/platform/networking/common/fetch.d.ts.map +1 -1
  80. package/dist/src/_internal/platform/networking/common/fetch.js.map +1 -1
  81. package/dist/src/_internal/platform/networking/node/chatWebSocketManager.d.ts +47 -21
  82. package/dist/src/_internal/platform/networking/node/chatWebSocketManager.d.ts.map +1 -1
  83. package/dist/src/_internal/platform/networking/node/chatWebSocketManager.js +138 -58
  84. package/dist/src/_internal/platform/networking/node/chatWebSocketManager.js.map +1 -1
  85. package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.d.ts +15 -11
  86. package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.d.ts.map +1 -1
  87. package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.js +22 -8
  88. package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.js.map +1 -1
  89. package/dist/src/_internal/platform/otel/common/genAiAttributes.d.ts +20 -0
  90. package/dist/src/_internal/platform/otel/common/genAiAttributes.d.ts.map +1 -1
  91. package/dist/src/_internal/platform/otel/common/genAiAttributes.js +18 -0
  92. package/dist/src/_internal/platform/otel/common/genAiAttributes.js.map +1 -1
  93. package/dist/src/_internal/platform/otel/common/genAiEvents.d.ts +7 -0
  94. package/dist/src/_internal/platform/otel/common/genAiEvents.d.ts.map +1 -1
  95. package/dist/src/_internal/platform/otel/common/genAiEvents.js +74 -0
  96. package/dist/src/_internal/platform/otel/common/genAiEvents.js.map +1 -1
  97. package/dist/src/_internal/platform/otel/common/genAiMetrics.d.ts +18 -0
  98. package/dist/src/_internal/platform/otel/common/genAiMetrics.d.ts.map +1 -1
  99. package/dist/src/_internal/platform/otel/common/genAiMetrics.js +73 -0
  100. package/dist/src/_internal/platform/otel/common/genAiMetrics.js.map +1 -1
  101. package/dist/src/_internal/platform/otel/common/index.d.ts +1 -0
  102. package/dist/src/_internal/platform/otel/common/index.d.ts.map +1 -1
  103. package/dist/src/_internal/platform/otel/common/index.js +4 -1
  104. package/dist/src/_internal/platform/otel/common/index.js.map +1 -1
  105. package/dist/src/_internal/platform/otel/common/workspaceOTelMetadata.d.ts +18 -0
  106. package/dist/src/_internal/platform/otel/common/workspaceOTelMetadata.d.ts.map +1 -0
  107. package/dist/src/_internal/platform/otel/common/workspaceOTelMetadata.js +62 -0
  108. package/dist/src/_internal/platform/otel/common/workspaceOTelMetadata.js.map +1 -0
  109. package/dist/src/_internal/platform/requestLogger/common/capturingToken.d.ts +1 -13
  110. package/dist/src/_internal/platform/requestLogger/common/capturingToken.d.ts.map +1 -1
  111. package/dist/src/_internal/platform/requestLogger/common/capturingToken.js +1 -8
  112. package/dist/src/_internal/platform/requestLogger/common/capturingToken.js.map +1 -1
  113. package/dist/src/package.json +48 -13
  114. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/common/fetch.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/common/fetch.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"fetch.js","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/common/fetch.ts"],"names":[],"mappings":";AAAA;;;gGAGgG;;AAmBhG,oCASC;AAmBD,kDAQC;AAED,4DAQC;AAyDD,sDAEC;AAqCD,8EAEC;AAED,oFAEC;AAiID,oDAEC;AArSD,qCAAgI;AAchI,SAAgB,YAAY,CAAC,OAAiB,EAAE,IAAU;IACzD,OAAO;QACN,eAAe,EAAE,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,EAAE;QAClD,eAAe,EAAE,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAI,EAAE;QACzD,YAAY,EAAE,IAAI,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE;QAC5C,OAAO,EAAE,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QAChD,iBAAiB,EAAE,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC,IAAI,EAAE;QAC5D,YAAY,EAAE,OAAO,CAAC,GAAG,CAAC,0BAA0B,CAAC,IAAI,EAAE;KAC3D,CAAC;AACH,CAAC;AAmBD,SAAgB,mBAAmB,CAAC,KAAc;IACjD,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,CAAC,CAAC,SAAS,IAAI,KAAK,CAAC,EAAE,CAAC;QAC1E,OAAO,KAAK,CAAC;IACd,CAAC;IAED,MAAM,EAAE,OAAO,EAAE,GAAG,KAAqC,CAAC;IAC1D,OAAO,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,KAAK,IAAI;QACrD,MAAM,IAAI,OAAO,IAAI,aAAa,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,WAAW,KAAK,QAAQ,CAAC;AAC/H,CAAC;AAED,SAAgB,wBAAwB,CAAC,KAAc;IACtD,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,CAAC,CAAC,WAAW,IAAI,KAAK,CAAC,EAAE,CAAC;QAC5E,OAAO,KAAK,CAAC;IACd,CAAC;IAED,MAAM,EAAE,SAAS,EAAE,GAAG,KAAwB,CAAC;IAC/C,OAAO,OAAO,SAAS,KAAK,QAAQ,IAAI,SAAS,KAAK,IAAI;QACzD,KAAK,IAAI,SAAS,IAAI,SAAS,IAAI,SAAS,IAAI,OAAO,SAAS,CAAC,GAAG,KAAK,QAAQ,IAAI,OAAO,SAAS,CAAC,OAAO,KAAK,QAAQ,CAAC;AAC7H,CAAC;AAyDD,SAAgB,qBAAqB,CAAC,SAAkB;IACvD,OAAO,OAAO,SAAS,KAAK,QAAQ,IAAI,CAAC,CAAC,SAAS,IAAI,OAAO,IAAI,SAAS,IAAI,SAAS,IAAI,SAAS,IAAI,KAAK,IAAI,SAAS,CAAC;AAC7H,CAAC;AAqCD,SAAgB,iCAAiC,CAAC,KAAkE;IACnH,OAAO,MAAM,IAAI,KAAK,IAAI,KAAK,CAAC,IAAI,KAAK,8CAAqC,CAAC;AAChF,CAAC;AAED,SAAgB,oCAAoC,CAAC,KAAkE;IACtH,OAAO,eAAe,IAAI,KAAK,CAAC;AACjC,CAAC;AAiID,SAAgB,oBAAoB,CAAC,IAA8E;IAClH,OAAQ,IAA2B,CAAC,QAAQ,KAAK,SAAS,CAAC;AAC5D,CAAC"}
1
+ {"version":3,"file":"fetch.js","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/common/fetch.ts"],"names":[],"mappings":";AAAA;;;gGAGgG;;AAmBhG,oCASC;AAmBD,kDAQC;AAED,4DAQC;AAyDD,sDAEC;AAuCD,8EAEC;AAED,oFAEC;AAiID,oDAEC;AAvSD,qCAAgI;AAchI,SAAgB,YAAY,CAAC,OAAiB,EAAE,IAAU;IACzD,OAAO;QACN,eAAe,EAAE,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,IAAI,EAAE;QAClD,eAAe,EAAE,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAI,EAAE;QACzD,YAAY,EAAE,IAAI,IAAI,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE;QAC5C,OAAO,EAAE,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;QAChD,iBAAiB,EAAE,OAAO,CAAC,GAAG,CAAC,sBAAsB,CAAC,IAAI,EAAE;QAC5D,YAAY,EAAE,OAAO,CAAC,GAAG,CAAC,0BAA0B,CAAC,IAAI,EAAE;KAC3D,CAAC;AACH,CAAC;AAmBD,SAAgB,mBAAmB,CAAC,KAAc;IACjD,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,CAAC,CAAC,SAAS,IAAI,KAAK,CAAC,EAAE,CAAC;QAC1E,OAAO,KAAK,CAAC;IACd,CAAC;IAED,MAAM,EAAE,OAAO,EAAE,GAAG,KAAqC,CAAC;IAC1D,OAAO,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,KAAK,IAAI;QACrD,MAAM,IAAI,OAAO,IAAI,aAAa,IAAI,OAAO,IAAI,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,WAAW,KAAK,QAAQ,CAAC;AAC/H,CAAC;AAED,SAAgB,wBAAwB,CAAC,KAAc;IACtD,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,CAAC,CAAC,WAAW,IAAI,KAAK,CAAC,EAAE,CAAC;QAC5E,OAAO,KAAK,CAAC;IACd,CAAC;IAED,MAAM,EAAE,SAAS,EAAE,GAAG,KAAwB,CAAC;IAC/C,OAAO,OAAO,SAAS,KAAK,QAAQ,IAAI,SAAS,KAAK,IAAI;QACzD,KAAK,IAAI,SAAS,IAAI,SAAS,IAAI,SAAS,IAAI,OAAO,SAAS,CAAC,GAAG,KAAK,QAAQ,IAAI,OAAO,SAAS,CAAC,OAAO,KAAK,QAAQ,CAAC;AAC7H,CAAC;AAyDD,SAAgB,qBAAqB,CAAC,SAAkB;IACvD,OAAO,OAAO,SAAS,KAAK,QAAQ,IAAI,CAAC,CAAC,SAAS,IAAI,OAAO,IAAI,SAAS,IAAI,SAAS,IAAI,SAAS,IAAI,KAAK,IAAI,SAAS,CAAC;AAC7H,CAAC;AAuCD,SAAgB,iCAAiC,CAAC,KAAkE;IACnH,OAAO,MAAM,IAAI,KAAK,IAAI,KAAK,CAAC,IAAI,KAAK,8CAAqC,CAAC;AAChF,CAAC;AAED,SAAgB,oCAAoC,CAAC,KAAkE;IACtH,OAAO,eAAe,IAAI,KAAK,CAAC;AACjC,CAAC;AAiID,SAAgB,oBAAoB,CAAC,IAA8E;IAClH,OAAQ,IAA2B,CAAC,QAAQ,KAAK,SAAS,CAAC;AAC5D,CAAC"}
@@ -2,6 +2,8 @@ import type { OpenAI } from 'openai';
2
2
  import { CancellationToken } from '../../../util/vs/base/common/cancellation';
3
3
  import { Event } from '../../../util/vs/base/common/event';
4
4
  import { Disposable, IDisposable } from '../../../util/vs/base/common/lifecycle';
5
+ import { QuotaSnapshots } from '../../chat/common/chatQuotaService';
6
+ import { IConfigurationService } from '../../configuration/common/configurationService';
5
7
  import { ICAPIClientService } from '../../endpoint/common/capiClient';
6
8
  import { ILogService } from '../../log/common/logService';
7
9
  import { ITelemetryService } from '../../telemetry/common/telemetry';
@@ -11,23 +13,21 @@ export declare const IChatWebSocketManager: import("../../../util/common/service
11
13
  export interface IChatWebSocketManager {
12
14
  readonly _serviceBrand: undefined;
13
15
  /**
14
- * Gets or creates a WebSocket connection for the given conversation turn.
15
- * The connection is scoped to a single turn, reused across tool call rounds
16
- * within the same turn, but closed when a new turn starts.
16
+ * Gets or creates a WebSocket connection for the given conversation.
17
+ * The connection is shared across turns and tool call rounds within
18
+ * the same conversation, keeping server-side context alive.
17
19
  */
18
- getOrCreateConnection(conversationId: string, turnId: string, headers: Record<string, string>): IChatWebSocketConnection;
20
+ getOrCreateConnection(conversationId: string, headers: Record<string, string>): IChatWebSocketConnection;
19
21
  /**
20
22
  * Returns true if there is an open WebSocket connection for the given
21
- * conversation and run. Used to decide whether the server already has
22
- * context from earlier iterations in this turn.
23
+ * conversation. Used to decide whether the server already has context
24
+ * from earlier requests in this conversation.
23
25
  */
24
- hasActiveConnection(conversationId: string, turnId: string): boolean;
26
+ hasActiveConnection(conversationId: string): boolean;
25
27
  /**
26
28
  * Closes and removes the connection for a specific conversation.
27
- * When turnId is provided, the connection is only closed if it matches
28
- * the currently tracked run for that conversation.
29
29
  */
30
- closeConnection(conversationId: string, turnId?: string): void;
30
+ closeConnection(conversationId: string): void;
31
31
  /**
32
32
  * Closes all active connections.
33
33
  */
@@ -38,13 +38,14 @@ export interface IChatWebSocketManager {
38
38
  */
39
39
  export declare class NullChatWebSocketManager implements IChatWebSocketManager {
40
40
  readonly _serviceBrand: undefined;
41
- getOrCreateConnection(_conversationId: string, _turnId: string, _headers?: Record<string, string>): IChatWebSocketConnection;
42
- hasActiveConnection(_conversationId: string, _turnId: string): boolean;
43
- closeConnection(_conversationId: string, _turnId?: string): void;
41
+ getOrCreateConnection(_conversationId: string, _headers?: Record<string, string>): IChatWebSocketConnection;
42
+ hasActiveConnection(_conversationId: string): boolean;
43
+ closeConnection(_conversationId: string): void;
44
44
  closeAll(): void;
45
45
  }
46
46
  export interface IChatWebSocketRequestOptions {
47
47
  userInitiated: boolean;
48
+ turnId: string;
48
49
  }
49
50
  export interface IChatWebSocketConnection extends IDisposable {
50
51
  /** Opens the WebSocket connection. Must be called before sendRequest. */
@@ -71,25 +72,50 @@ export interface IChatWebSocketConnection extends IDisposable {
71
72
  readonly statefulMarker: string | undefined;
72
73
  }
73
74
  export interface IChatWebSocketRequestHandle {
74
- /** Fires for each JSON event received from the server. */
75
+ /** Fires for each OpenAI stream event received from the server. */
75
76
  readonly onEvent: Event<OpenAI.Responses.ResponseStreamEvent>;
76
- /** Fires when an error occurs. */
77
+ /** Fires when a CAPI WebSocket error is received (nested error shape). */
78
+ readonly onCAPIError: Event<CAPIWebSocketErrorEvent>;
79
+ /** Fires when a transport-level error occurs (connection lost, etc.). */
77
80
  readonly onError: Event<Error>;
78
- /** Fires when the request completes (response.completed received). */
79
- readonly onComplete: Event<void>;
81
+ /**
82
+ * Resolves with the first event received from the server, or rejects
83
+ * if the connection errors/closes before any event arrives.
84
+ * Consumers can inspect the event type to decide the response kind
85
+ * (success stream vs. CAPI error) before processing remaining events.
86
+ */
87
+ readonly firstEvent: Promise<OpenAI.Responses.ResponseStreamEvent | CAPIWebSocketErrorEvent>;
80
88
  /** Resolves when the request has finished (completed or errored). */
81
89
  readonly done: Promise<void>;
82
90
  }
91
+ /**
92
+ * CAPI WebSocket error shape. Unlike the OpenAI SDK's flat `ResponseErrorEvent`
93
+ * (`{ type: "error", code, message }`), CAPI wraps the error details in a
94
+ * nested `error` object: `{ type: "error", error: { code, message } }`.
95
+ *
96
+ * Non-recoverable errors (rate limits, quota, upstream failures) also include
97
+ * `copilot_quota_snapshots` with per-model quota state.
98
+ */
99
+ export interface CAPIWebSocketErrorEvent {
100
+ readonly type: 'error';
101
+ readonly error: {
102
+ readonly code: string;
103
+ readonly message: string;
104
+ };
105
+ readonly copilot_quota_snapshots?: QuotaSnapshots;
106
+ }
107
+ export declare function isCAPIWebSocketError(event: OpenAI.Responses.ResponseStreamEvent | CAPIWebSocketErrorEvent): event is CAPIWebSocketErrorEvent;
83
108
  export declare class ChatWebSocketManager extends Disposable implements IChatWebSocketManager {
84
109
  private readonly _logService;
85
110
  private readonly _capiClientService;
86
111
  private readonly _telemetryService;
112
+ private readonly _configurationService;
87
113
  readonly _serviceBrand: undefined;
88
114
  private readonly _connections;
89
- constructor(_logService: ILogService, _capiClientService: ICAPIClientService, _telemetryService: ITelemetryService);
90
- getOrCreateConnection(conversationId: string, turnId: string, headers: Record<string, string>): IChatWebSocketConnection;
91
- hasActiveConnection(conversationId: string, turnId: string): boolean;
92
- closeConnection(conversationId: string, turnId?: string): void;
115
+ constructor(_logService: ILogService, _capiClientService: ICAPIClientService, _telemetryService: ITelemetryService, _configurationService: IConfigurationService);
116
+ getOrCreateConnection(conversationId: string, headers: Record<string, string>): IChatWebSocketConnection;
117
+ hasActiveConnection(conversationId: string): boolean;
118
+ closeConnection(conversationId: string): void;
93
119
  closeAll(): void;
94
120
  dispose(): void;
95
121
  }
@@ -1 +1 @@
1
- {"version":3,"file":"chatWebSocketManager.d.ts","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/node/chatWebSocketManager.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"chatWebSocketManager.d.ts","sourceRoot":"","sources":["../../../../../../src/_internal/platform/networking/node/chatWebSocketManager.ts"],"names":[],"mappings":"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"}
@@ -14,10 +14,12 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
14
14
  };
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ChatWebSocketManager = exports.NullChatWebSocketManager = exports.IChatWebSocketManager = void 0;
17
+ exports.isCAPIWebSocketError = isCAPIWebSocketError;
17
18
  const services_1 = require("../../../util/common/services");
18
19
  const errors_1 = require("../../../util/vs/base/common/errors");
19
20
  const event_1 = require("../../../util/vs/base/common/event");
20
21
  const lifecycle_1 = require("../../../util/vs/base/common/lifecycle");
22
+ const configurationService_1 = require("../../configuration/common/configurationService");
21
23
  const capiClient_1 = require("../../endpoint/common/capiClient");
22
24
  const logService_1 = require("../../log/common/logService");
23
25
  const telemetry_1 = require("../../telemetry/common/telemetry");
@@ -28,65 +30,79 @@ exports.IChatWebSocketManager = (0, services_1.createServiceIdentifier)('IChatWe
28
30
  * No-op implementation for contexts where WebSocket is not available (web, tests, chat-lib).
29
31
  */
30
32
  class NullChatWebSocketManager {
31
- getOrCreateConnection(_conversationId, _turnId, _headers) {
33
+ getOrCreateConnection(_conversationId, _headers) {
32
34
  throw new Error('WebSocket not available');
33
35
  }
34
- hasActiveConnection(_conversationId, _turnId) { return false; }
35
- closeConnection(_conversationId, _turnId) { }
36
+ hasActiveConnection(_conversationId) { return false; }
37
+ closeConnection(_conversationId) { }
36
38
  closeAll() { }
37
39
  }
38
40
  exports.NullChatWebSocketManager = NullChatWebSocketManager;
41
+ function isCAPIWebSocketError(event) {
42
+ return event.type === 'error' && 'error' in event && typeof event.error?.code === 'string';
43
+ }
44
+ const streamTerminatingOutcomes = {
45
+ 'response.completed': 'completed',
46
+ 'response.failed': 'response_failed',
47
+ 'response.incomplete': 'response_incomplete',
48
+ 'response.cancelled': 'response_cancelled',
49
+ 'error': 'upstream_error',
50
+ };
51
+ function getStreamTerminatingOutcome(event) {
52
+ return streamTerminatingOutcomes[event.type];
53
+ }
39
54
  let ChatWebSocketManager = class ChatWebSocketManager extends lifecycle_1.Disposable {
40
- constructor(_logService, _capiClientService, _telemetryService) {
55
+ constructor(_logService, _capiClientService, _telemetryService, _configurationService) {
41
56
  super();
42
57
  this._logService = _logService;
43
58
  this._capiClientService = _capiClientService;
44
59
  this._telemetryService = _telemetryService;
60
+ this._configurationService = _configurationService;
45
61
  this._connections = new Map();
46
62
  }
47
- getOrCreateConnection(conversationId, turnId, headers) {
63
+ getOrCreateConnection(conversationId, headers) {
48
64
  const existing = this._connections.get(conversationId);
49
- // Reuse the connection if it's for the same turn and still open.
50
- if (existing?.turnId === turnId && existing.connection.isOpen) {
51
- this._logService.debug(`[ChatWebSocketManager] Reusing connection for conversation ${conversationId} turn ${turnId}`);
52
- return existing.connection;
65
+ // Reuse the connection if it's still open, even across turns.
66
+ if (existing?.isOpen) {
67
+ return existing;
53
68
  }
54
69
  if (existing) {
55
- this._logService.debug(`[ChatWebSocketManager] Closing previous connection for conversation ${conversationId} (turn changed)`);
56
- existing.connection.dispose();
70
+ this._logService.debug(`[ChatWebSocketManager] Replacing closed connection for conversation ${conversationId}`);
71
+ existing.dispose();
57
72
  this._connections.delete(conversationId);
58
73
  }
59
- const connection = new ChatWebSocketConnection(this._capiClientService, this._logService, this._telemetryService, conversationId, turnId, headers);
60
- this._logService.debug(`[ChatWebSocketManager] Creating new connection for conversation ${conversationId} turn ${turnId}`);
61
- this._connections.set(conversationId, { turnId, connection });
74
+ const connection = new ChatWebSocketConnection(this._capiClientService, this._logService, this._telemetryService, this._configurationService, conversationId, headers);
75
+ this._logService.debug(`[ChatWebSocketManager] Creating new connection for conversation ${conversationId}`);
76
+ this._connections.set(conversationId, connection);
62
77
  // Remove from map when disposed externally
63
78
  connection.onDidDispose(() => {
64
79
  const entry = this._connections.get(conversationId);
65
- if (entry?.connection === connection) {
80
+ if (entry === connection) {
66
81
  this._connections.delete(conversationId);
67
82
  }
68
83
  });
69
84
  return connection;
70
85
  }
71
- hasActiveConnection(conversationId, turnId) {
72
- const entry = this._connections.get(conversationId);
73
- return !!entry && entry.turnId === turnId && entry.connection.isOpen;
86
+ hasActiveConnection(conversationId) {
87
+ const connection = this._connections.get(conversationId);
88
+ return !!connection?.isOpen;
74
89
  }
75
- closeConnection(conversationId, turnId) {
76
- const entry = this._connections.get(conversationId);
77
- if (entry) {
78
- if (turnId && entry.turnId !== turnId) {
79
- this._logService.debug(`[ChatWebSocketManager] Not closing connection for conversation ${conversationId}: requested turn ${turnId} does not match active turn ${entry.turnId}`);
80
- return;
90
+ closeConnection(conversationId) {
91
+ const connection = this._connections.get(conversationId);
92
+ if (connection) {
93
+ if (connection.hasActiveRequest) {
94
+ this._logService.warn(`[ChatWebSocketManager] Closing connection for conversation ${conversationId} while turn ${connection.turnId} still has an active request`);
81
95
  }
82
- this._logService.debug(`[ChatWebSocketManager] Closing connection for conversation ${conversationId} turn ${turnId}`);
83
- entry.connection.dispose();
96
+ else {
97
+ this._logService.debug(`[ChatWebSocketManager] Closing connection for conversation ${conversationId}`);
98
+ }
99
+ connection.dispose();
84
100
  this._connections.delete(conversationId);
85
101
  }
86
102
  }
87
103
  closeAll() {
88
- for (const entry of this._connections.values()) {
89
- entry.connection.dispose();
104
+ for (const connection of this._connections.values()) {
105
+ connection.dispose();
90
106
  }
91
107
  this._connections.clear();
92
108
  }
@@ -99,7 +115,8 @@ exports.ChatWebSocketManager = ChatWebSocketManager;
99
115
  exports.ChatWebSocketManager = ChatWebSocketManager = __decorate([
100
116
  __param(0, logService_1.ILogService),
101
117
  __param(1, capiClient_1.ICAPIClientService),
102
- __param(2, telemetry_1.ITelemetryService)
118
+ __param(2, telemetry_1.ITelemetryService),
119
+ __param(3, configurationService_1.IConfigurationService)
103
120
  ], ChatWebSocketManager);
104
121
  function wsCloseCodeToString(code) {
105
122
  switch (code) {
@@ -122,13 +139,13 @@ function wsCloseCodeToString(code) {
122
139
  }
123
140
  }
124
141
  class ChatWebSocketConnection extends lifecycle_1.Disposable {
125
- constructor(_capiClientService, _logService, _telemetryService, _conversationId, _turnId, _headers) {
142
+ constructor(_capiClientService, _logService, _telemetryService, _configurationService, _conversationId, _headers) {
126
143
  super();
127
144
  this._capiClientService = _capiClientService;
128
145
  this._logService = _logService;
129
146
  this._telemetryService = _telemetryService;
147
+ this._configurationService = _configurationService;
130
148
  this._conversationId = _conversationId;
131
- this._turnId = _turnId;
132
149
  this._headers = _headers;
133
150
  this._state = 2 /* ConnectionState.Closed */;
134
151
  this._onDidDispose = this._register(new event_1.Emitter());
@@ -138,10 +155,17 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
138
155
  this._totalSentCharacters = 0;
139
156
  this._totalReceivedCharacters = 0;
140
157
  this._responseHeaders = new fetcherService_1.HeadersImpl({});
158
+ this._hadActiveRequest = false;
141
159
  }
142
160
  get isOpen() {
143
161
  return this._state === 1 /* ConnectionState.Open */ && !!this._ws;
144
162
  }
163
+ get hasActiveRequest() {
164
+ return !!this._activeRequest;
165
+ }
166
+ get turnId() {
167
+ return this._turnId;
168
+ }
145
169
  get statefulMarker() {
146
170
  return this._statefulMarker;
147
171
  }
@@ -166,7 +190,7 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
166
190
  }
167
191
  this._state = 0 /* ConnectionState.Connecting */;
168
192
  this._connectStartTime = Date.now();
169
- this._logService.debug(`[ChatWebSocketManager] Connecting WebSocket for conversation ${this._conversationId} turn ${this._turnId}`);
193
+ this._logService.debug(`[ChatWebSocketManager] Connecting WebSocket for conversation ${this._conversationId}`);
170
194
  const connection = await this._capiClientService.createResponsesWebSocket({
171
195
  headers: this._headers,
172
196
  });
@@ -182,10 +206,9 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
182
206
  this._responseStatusText = connection.responseStatusText;
183
207
  this._setupMessageHandlers(ws);
184
208
  const connectDurationMs = this._connectedTime - (this._connectStartTime ?? this._connectedTime);
185
- this._logService.debug(`[ChatWebSocketManager] Connected for conversation ${this._conversationId} turn ${this._turnId}`);
209
+ this._logService.debug(`[ChatWebSocketManager] Connected for conversation ${this._conversationId}`);
186
210
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendConnectedTelemetry(this._telemetryService, {
187
211
  conversationId: this._conversationId,
188
- turnId: this._turnId,
189
212
  requestId: this.requestId,
190
213
  gitHubRequestId: this.gitHubRequestId,
191
214
  connectDurationMs,
@@ -200,10 +223,9 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
200
223
  this._responseStatusText = connection.responseStatusText;
201
224
  const errorMessage = event.error ? `${event.message}: ${(0, logService_1.collectSingleLineErrorMessage)(event.error)}` : event.message || 'WebSocket error';
202
225
  const connectDurationMs = Date.now() - (this._connectStartTime ?? Date.now());
203
- this._logService.error(`[ChatWebSocketManager] Connection error for conversation ${this._conversationId} turn ${this._turnId}: ${errorMessage}`);
226
+ this._logService.error(`[ChatWebSocketManager] Connection error for conversation ${this._conversationId}: ${errorMessage}`);
204
227
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendConnectErrorTelemetry(this._telemetryService, {
205
228
  conversationId: this._conversationId,
206
- turnId: this._turnId,
207
229
  requestId: this.requestId,
208
230
  gitHubRequestId: this.gitHubRequestId,
209
231
  error: errorMessage,
@@ -221,10 +243,9 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
221
243
  this._responseStatusText = connection.responseStatusText;
222
244
  const connectDurationMs = Date.now() - (this._connectStartTime ?? Date.now());
223
245
  const closeCodeDescription = wsCloseCodeToString(event.code);
224
- this._logService.debug(`[ChatWebSocketManager] Connection closed during setup for conversation ${this._conversationId} turn ${this._turnId} (code: ${event.code} ${closeCodeDescription}, reason: ${event.reason || '<empty>'}, wasClean: ${event.wasClean})`);
246
+ this._logService.debug(`[ChatWebSocketManager] Connection closed during setup for conversation ${this._conversationId} (code: ${event.code} ${closeCodeDescription}, reason: ${event.reason || '<empty>'}, wasClean: ${event.wasClean})`);
225
247
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendCloseDuringSetupTelemetry(this._telemetryService, {
226
248
  conversationId: this._conversationId,
227
- turnId: this._turnId,
228
249
  requestId: this.requestId,
229
250
  gitHubRequestId: this.gitHubRequestId,
230
251
  closeCode: event.code,
@@ -264,6 +285,8 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
264
285
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendMessageParseErrorTelemetry(this._telemetryService, {
265
286
  conversationId: this._conversationId,
266
287
  turnId: this._turnId,
288
+ previousTurnId: this._previousTurnId,
289
+ hadActiveRequest: this._hadActiveRequest,
267
290
  requestId: this.requestId,
268
291
  gitHubRequestId: this.gitHubRequestId,
269
292
  error: parseErrorMessage,
@@ -276,7 +299,7 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
276
299
  });
277
300
  return;
278
301
  }
279
- if (parsed.type === 'response.completed') {
302
+ if (!isCAPIWebSocketError(parsed) && parsed.type === 'response.completed') {
280
303
  this._statefulMarker = parsed.response.id;
281
304
  }
282
305
  this._activeRequest?.handleEvent(parsed);
@@ -289,6 +312,8 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
289
312
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendCloseTelemetry(this._telemetryService, {
290
313
  conversationId: this._conversationId,
291
314
  turnId: this._turnId,
315
+ previousTurnId: this._previousTurnId,
316
+ hadActiveRequest: this._hadActiveRequest,
292
317
  requestId: this.requestId,
293
318
  gitHubRequestId: this.gitHubRequestId,
294
319
  closeCode: event.code,
@@ -313,6 +338,8 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
313
338
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendErrorTelemetry(this._telemetryService, {
314
339
  conversationId: this._conversationId,
315
340
  turnId: this._turnId,
341
+ previousTurnId: this._previousTurnId,
342
+ hadActiveRequest: this._hadActiveRequest,
316
343
  requestId: this.requestId,
317
344
  gitHubRequestId: this.gitHubRequestId,
318
345
  error: errorMessage,
@@ -340,15 +367,33 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
340
367
  else {
341
368
  this._logService.info(`[ChatWebSocketManager] WebSocket stateful marker (${statefulMarkerPrefix}) does not match previous_response_id (${previousResponsePrefix})`);
342
369
  }
343
- // Cancel any previous in-flight request
344
- this._activeRequest?.handleSuperseded();
370
+ // Supersede any in-flight request before updating turn state
371
+ const hadActiveRequest = !!this._activeRequest;
372
+ if (hadActiveRequest) {
373
+ this._logService.warn(`[ChatWebSocketManager] New request for conversation ${this._conversationId} turn ${options.turnId} while turn ${this._turnId} still has an active request`);
374
+ this._activeRequest.handleSuperseded();
375
+ }
376
+ else {
377
+ this._logService.debug(`[ChatWebSocketManager] New request for conversation ${this._conversationId} turn ${options.turnId} (previous turn: ${this._turnId})`);
378
+ }
379
+ // Update turn state after superseding so the old request's settle
380
+ // callback (which fires synchronously from handleSuperseded) still
381
+ // sees its own turnId on `this`.
382
+ const previousTurnId = this._turnId;
383
+ const turnId = options.turnId;
384
+ this._previousTurnId = previousTurnId;
385
+ this._turnId = turnId;
386
+ this._hadActiveRequest = hadActiveRequest;
345
387
  const requestStartTime = Date.now();
346
388
  const requestStartSentMessageCount = this._totalSentMessageCount;
347
389
  const requestStartReceivedMessageCount = this._totalReceivedMessageCount;
348
390
  const requestStartSentCharacters = this._totalSentCharacters;
349
391
  const requestStartReceivedCharacters = this._totalReceivedCharacters;
350
- const request = new ChatWebSocketActiveRequest();
392
+ const request = new ChatWebSocketActiveRequest(this._configurationService, this._logService);
351
393
  request.onDidSettle(({ outcome, closeCode, closeReason, serverErrorMessage, serverErrorCode }) => {
394
+ if (this._activeRequest === request) {
395
+ this._activeRequest = undefined;
396
+ }
352
397
  const connectionDurationMs = Date.now() - (this._connectedTime ?? Date.now());
353
398
  const requestDurationMs = Date.now() - requestStartTime;
354
399
  const requestSentMessageCount = this._totalSentMessageCount - requestStartSentMessageCount;
@@ -357,7 +402,9 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
357
402
  const requestReceivedCharacters = this._totalReceivedCharacters - requestStartReceivedCharacters;
358
403
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendRequestOutcomeTelemetry(this._telemetryService, {
359
404
  conversationId: this._conversationId,
360
- turnId: this._turnId,
405
+ turnId,
406
+ previousTurnId,
407
+ hadActiveRequest,
361
408
  requestId: this.requestId,
362
409
  gitHubRequestId: this.gitHubRequestId,
363
410
  requestOutcome: outcome,
@@ -388,7 +435,7 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
388
435
  this._activeRequest = undefined;
389
436
  }
390
437
  });
391
- request.done.finally(() => cancelDisposable.dispose());
438
+ request.done.finally(() => cancelDisposable.dispose()).catch(() => { });
392
439
  const { stream: _, ...rest } = body;
393
440
  const message = {
394
441
  type: 'response.create',
@@ -403,7 +450,9 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
403
450
  this._logService.debug(`[ChatWebSocketManager] Sending request for conversation ${this._conversationId} turn ${this._turnId} (totalSentMessageCount: ${this._totalSentMessageCount}, sentMessageCharacters: ${sentMessageCharacters})`);
404
451
  chatWebSocketTelemetry_1.ChatWebSocketTelemetrySender.sendRequestSentTelemetry(this._telemetryService, {
405
452
  conversationId: this._conversationId,
406
- turnId: this._turnId,
453
+ turnId,
454
+ previousTurnId,
455
+ hadActiveRequest,
407
456
  requestId: this.requestId,
408
457
  gitHubRequestId: this.gitHubRequestId,
409
458
  statefulMarkerMatched,
@@ -432,18 +481,25 @@ class ChatWebSocketConnection extends lifecycle_1.Disposable {
432
481
  }
433
482
  }
434
483
  class ChatWebSocketActiveRequest {
435
- constructor() {
484
+ constructor(_configurationService, _logService) {
485
+ this._configurationService = _configurationService;
486
+ this._logService = _logService;
436
487
  this._onEvent = new event_1.Emitter();
437
488
  this.onEvent = this._onEvent.event;
489
+ this._onCAPIError = new event_1.Emitter();
490
+ this.onCAPIError = this._onCAPIError.event;
438
491
  this._onError = new event_1.Emitter();
439
492
  this.onError = this._onError.event;
440
- this._onComplete = new event_1.Emitter();
441
- this.onComplete = this._onComplete.event;
493
+ this._firstEventSettled = false;
442
494
  this._settled = false;
443
495
  this.done = new Promise((resolve, reject) => {
444
496
  this._resolve = resolve;
445
497
  this._reject = reject;
446
498
  });
499
+ this.firstEvent = new Promise((resolve, reject) => {
500
+ this._resolveFirstEvent = resolve;
501
+ this._rejectFirstEvent = reject;
502
+ });
447
503
  }
448
504
  onDidSettle(callback) {
449
505
  this._onDidSettle = callback;
@@ -452,18 +508,30 @@ class ChatWebSocketActiveRequest {
452
508
  if (this._settled) {
453
509
  return;
454
510
  }
455
- if (event.type === 'error') {
456
- const serverErrorMessage = event.message || event.error?.message || 'Server error';
457
- const serverErrorCode = event.code || event.error?.code || undefined;
458
- const errorMessage = serverErrorCode ? `${serverErrorMessage} (${serverErrorCode})` : serverErrorMessage;
459
- const error = new Error(errorMessage);
460
- this._finalizeError('server_error', error, undefined, undefined, serverErrorMessage, serverErrorCode);
511
+ // E.g.: "github.copilot.chat.advanced.debug.simulateWebSocketResponse": "{\"type\":\"error\",\"error\":{\"code\":\"user_global_rate_limited:enterprise\",\"message\":\"Rate limit exceeded\"}}"
512
+ // E.g.: "github.copilot.chat.advanced.debug.simulateWebSocketResponse": "{\"type\":\"error\",\"error\":{\"code\":\"service_unavailable\",\"message\":\"service temporarily unavailable, please retry\"}}"
513
+ const simulateResponse = this._configurationService.getConfig(configurationService_1.ConfigKey.TeamInternal.DebugSimulateWebSocketResponse);
514
+ if (simulateResponse) {
515
+ try {
516
+ event = JSON.parse(simulateResponse);
517
+ this._logService.info(`[ChatWebSocketManager] Simulating WebSocket response event: ${simulateResponse}`);
518
+ }
519
+ catch (e) {
520
+ this._logService.error(`[ChatWebSocketManager] Failed to parse simulated WebSocket response: ${(0, logService_1.collectSingleLineErrorMessage)(e)}`);
521
+ }
522
+ }
523
+ if (!this._firstEventSettled) {
524
+ this._firstEventSettled = true;
525
+ this._resolveFirstEvent(event);
526
+ }
527
+ if (isCAPIWebSocketError(event)) {
528
+ this._finalizeCAPIError(event);
461
529
  return;
462
530
  }
463
531
  this._onEvent.fire(event);
464
- if (event.type === 'response.completed') {
465
- this._onComplete.fire();
466
- this._finalizeSuccess('completed');
532
+ const outcome = getStreamTerminatingOutcome(event);
533
+ if (outcome) {
534
+ this._finalizeSuccess(outcome);
467
535
  }
468
536
  }
469
537
  handleConnectionClose(code, reason, errorMessage) {
@@ -499,7 +567,19 @@ class ChatWebSocketActiveRequest {
499
567
  this._resolve();
500
568
  this._dispose();
501
569
  }
570
+ _finalizeCAPIError(event) {
571
+ const { code, message } = event.error;
572
+ this._onCAPIError.fire(event);
573
+ this._settled = true;
574
+ this._onDidSettle?.({ outcome: 'error_response', serverErrorMessage: message, serverErrorCode: code });
575
+ this._reject(new Error(`${message} (${code})`));
576
+ this._dispose();
577
+ }
502
578
  _finalizeError(outcome, error, closeCode, closeReason, serverErrorMessage, serverErrorCode) {
579
+ if (!this._firstEventSettled) {
580
+ this._firstEventSettled = true;
581
+ this._rejectFirstEvent(error);
582
+ }
503
583
  this._onError.fire(error);
504
584
  this._settled = true;
505
585
  this._onDidSettle?.({ outcome, closeCode, closeReason, serverErrorMessage, serverErrorCode });
@@ -508,8 +588,8 @@ class ChatWebSocketActiveRequest {
508
588
  }
509
589
  _dispose() {
510
590
  this._onEvent.dispose();
591
+ this._onCAPIError.dispose();
511
592
  this._onError.dispose();
512
- this._onComplete.dispose();
513
593
  }
514
594
  }
515
595
  //# sourceMappingURL=chatWebSocketManager.js.map