@red-hat-developer-hub/backstage-plugin-intelligent-assistant-backend 3.0.0

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 (51) hide show
  1. package/CHANGELOG.md +607 -0
  2. package/README.md +400 -0
  3. package/app-config.yaml +25 -0
  4. package/config.d.ts +142 -0
  5. package/dist/database/migration.cjs.js +19 -0
  6. package/dist/database/migration.cjs.js.map +1 -0
  7. package/dist/index.cjs.js +12 -0
  8. package/dist/index.cjs.js.map +1 -0
  9. package/dist/index.d.ts +73 -0
  10. package/dist/plugin.cjs.js +95 -0
  11. package/dist/plugin.cjs.js.map +1 -0
  12. package/dist/service/constant.cjs.js +107 -0
  13. package/dist/service/constant.cjs.js.map +1 -0
  14. package/dist/service/mcp-server-store.cjs.js +107 -0
  15. package/dist/service/mcp-server-store.cjs.js.map +1 -0
  16. package/dist/service/mcp-server-validator.cjs.js +215 -0
  17. package/dist/service/mcp-server-validator.cjs.js.map +1 -0
  18. package/dist/service/middleware/createPermissionMiddleware.cjs.js +24 -0
  19. package/dist/service/middleware/createPermissionMiddleware.cjs.js.map +1 -0
  20. package/dist/service/middleware/createRateLimitMiddleware.cjs.js +52 -0
  21. package/dist/service/middleware/createRateLimitMiddleware.cjs.js.map +1 -0
  22. package/dist/service/middleware/getIdentity.cjs.js +39 -0
  23. package/dist/service/middleware/getIdentity.cjs.js.map +1 -0
  24. package/dist/service/notebooks/VectorStoresOperator.cjs.js +347 -0
  25. package/dist/service/notebooks/VectorStoresOperator.cjs.js.map +1 -0
  26. package/dist/service/notebooks/documents/documentHelpers.cjs.js +36 -0
  27. package/dist/service/notebooks/documents/documentHelpers.cjs.js.map +1 -0
  28. package/dist/service/notebooks/documents/documentService.cjs.js +189 -0
  29. package/dist/service/notebooks/documents/documentService.cjs.js.map +1 -0
  30. package/dist/service/notebooks/documents/fileParser.cjs.js +139 -0
  31. package/dist/service/notebooks/documents/fileParser.cjs.js.map +1 -0
  32. package/dist/service/notebooks/notebooksRouters.cjs.js +477 -0
  33. package/dist/service/notebooks/notebooksRouters.cjs.js.map +1 -0
  34. package/dist/service/notebooks/sessions/sessionService.cjs.js +226 -0
  35. package/dist/service/notebooks/sessions/sessionService.cjs.js.map +1 -0
  36. package/dist/service/notebooks/types/notebooksTypes.cjs.js +40 -0
  37. package/dist/service/notebooks/types/notebooksTypes.cjs.js.map +1 -0
  38. package/dist/service/notebooks/utils.cjs.js +70 -0
  39. package/dist/service/notebooks/utils.cjs.js.map +1 -0
  40. package/dist/service/permission.cjs.js +26 -0
  41. package/dist/service/permission.cjs.js.map +1 -0
  42. package/dist/service/router.cjs.js +638 -0
  43. package/dist/service/router.cjs.js.map +1 -0
  44. package/dist/service/token-encryption.cjs.js +101 -0
  45. package/dist/service/token-encryption.cjs.js.map +1 -0
  46. package/dist/service/utils.cjs.js +40 -0
  47. package/dist/service/utils.cjs.js.map +1 -0
  48. package/dist/service/validation.cjs.js +45 -0
  49. package/dist/service/validation.cjs.js.map +1 -0
  50. package/migrations/20260302120000_add_mcp_servers.js +41 -0
  51. package/package.json +109 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,607 @@
1
+ # @red-hat-developer-hub/backstage-plugin-lightspeed-backend
2
+
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 95d26f7: BREAKING CHANGE: Rename Lightspeed plugins to Intelligent Assistant. npm package names, Backstage plugin IDs (`pluginId`), backend API base URLs (`/api/lightspeed` → `/api/intelligent-assistant`), app-config namespace (`lightspeed:` → `intelligent-assistant:`), RBAC permission names (`lightspeed.*` → `intelligent-assistant.*`), scalprum identifiers, NFS extension names, and translation refs have all been updated. See the backend plugin README migration guide for full details.
8
+ - 95d26f7: BREAKING CHANGE: The configuration namespace has been renamed from `lightspeed` to `intelligent-assistant`. Update your `app-config.yaml` to replace `lightspeed:` with `intelligent-assistant:`. RBAC permission policy names have also been renamed (e.g., `lightspeed.chat.read` → `intelligent-assistant.chat.read`). Update your `rbac-policy.csv` accordingly. See the migration guide in the lightspeed-backend plugin's README for full details.
9
+
10
+ ### Minor Changes
11
+
12
+ - 95d26f7: Add DCR (Dynamic Client Registration) authentication support for Backstage-internal MCP servers, allowing the Lightspeed backend to mint per-user plugin request tokens instead of requiring static tokens.
13
+ - 95d26f7: add rate limiting to lightspeed and notebooks
14
+ - 95d26f7: bugfix - Notebooks routes 404 passthrough error resolved
15
+ - 95d26f7: Backstage version bump to v1.52.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 95d26f7: removed unused llama stack dependency (and transitive dependencies). removed dead constant.
20
+ - 95d26f7: Removed hardcoded vector_store_ids override to enable BYOK RAG sources
21
+ - 95d26f7: Add input size validation for queries and attachments to prevent resource exhaustion. Queries are limited to 32K characters, individual attachments to 20MB, and total attachments to 50MB.
22
+ - 95d26f7: Updated dependency `prettier` to `3.8.4`.
23
+ - 95d26f7: Updated dependency `llama-stack-client` to `^0.7.0`.
24
+ Updated dependency `msw` to `2.14.6`.
25
+ Updated dependency `langsmith` to `^0.7.0`.
26
+ Updated dependency `@patternfly/react-core` to `6.5.1`.
27
+ Updated dependency `@red-hat-developer-hub/backstage-plugin-theme` to `^0.14.0`.
28
+ - Updated dependencies [95d26f7]
29
+ - Updated dependencies [95d26f7]
30
+ - Updated dependencies [95d26f7]
31
+ - Updated dependencies [95d26f7]
32
+ - @red-hat-developer-hub/backstage-plugin-intelligent-assistant-common@3.0.0
33
+
34
+ ## 2.9.1
35
+
36
+ ### Patch Changes
37
+
38
+ - 2714194: Security: Sanitize LCS error responses to prevent information disclosure
39
+ - d49a228: add middleware for identity resolution
40
+ - e142be3: refactor permission handling and update proxy passthrough
41
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.9.1
42
+
43
+ ## 2.9.0
44
+
45
+ ### Patch Changes
46
+
47
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.9.0
48
+
49
+ ## 2.8.5
50
+
51
+ ### Patch Changes
52
+
53
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.8.5
54
+
55
+ ## 2.8.4
56
+
57
+ ### Patch Changes
58
+
59
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.8.4
60
+
61
+ ## 2.8.3
62
+
63
+ ### Patch Changes
64
+
65
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.8.3
66
+
67
+ ## 2.8.2
68
+
69
+ ### Patch Changes
70
+
71
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.8.2
72
+
73
+ ## 2.8.1
74
+
75
+ ### Patch Changes
76
+
77
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.8.1
78
+
79
+ ## 2.8.0
80
+
81
+ ### Minor Changes
82
+
83
+ - 3c9c556: - Hide notebooks tab when `lightspeed.notebooks.enabled: false` in config
84
+ - Fix notebook queries to display correct model from config instead of chat's selected model
85
+ - Add `/notebook-conversation-ids` endpoint to filter notebook conversations from chat list even when notebooks disabled
86
+ - 674f043: URL filetype backend support removed
87
+
88
+ ### Patch Changes
89
+
90
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.8.0
91
+
92
+ ## 2.7.1
93
+
94
+ ### Patch Changes
95
+
96
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.7.1
97
+
98
+ ## 2.7.0
99
+
100
+ ### Patch Changes
101
+
102
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.7.0
103
+
104
+ ## 2.6.8
105
+
106
+ ### Patch Changes
107
+
108
+ - 02f64dc: add return statement to /v1/feedback error handler to prevent unhandled error fallthrough
109
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.8
110
+
111
+ ## 2.6.7
112
+
113
+ ### Patch Changes
114
+
115
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.7
116
+
117
+ ## 2.6.6
118
+
119
+ ### Patch Changes
120
+
121
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.6
122
+
123
+ ## 2.6.5
124
+
125
+ ### Patch Changes
126
+
127
+ - 96041ee: update default LCORE host from 0.0.0.0 to 127.0.0.1
128
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.5
129
+
130
+ ## 2.6.4
131
+
132
+ ### Patch Changes
133
+
134
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.4
135
+
136
+ ## 2.6.3
137
+
138
+ ### Patch Changes
139
+
140
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.3
141
+
142
+ ## 2.6.2
143
+
144
+ ### Patch Changes
145
+
146
+ - 5148408: Migrated to Jest 30 as required by @backstage/cli 0.36.0.
147
+ - Updated dependencies [5148408]
148
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.2
149
+
150
+ ## 2.6.1
151
+
152
+ ### Patch Changes
153
+
154
+ - 3dfbbee: Update multer to v2.1.1
155
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.1
156
+
157
+ ## 2.6.0
158
+
159
+ ### Minor Changes
160
+
161
+ - c346ec1: updated config.d.ts to reflect app-config.yaml notebooks settings. Update notebooks system prompting
162
+
163
+ ### Patch Changes
164
+
165
+ - cd803ed: harden proxy passthrough by adding allowlist for routes
166
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.6.0
167
+
168
+ ## 2.5.1
169
+
170
+ ### Patch Changes
171
+
172
+ - 5d17950: Retain Lightspeed chat and tool-call state when the chat UI remounts (for example when switching display mode between embedded and overlay), so the active thread and tool metadata are not dropped while messages are still streaming or before history refetches.
173
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.5.1
174
+
175
+ ## 2.5.0
176
+
177
+ ### Patch Changes
178
+
179
+ - d9df5b8: Add notebook chat with streaming support, document management, and UI improvements.
180
+ - Backend: add SSE transform to normalize Responses API format to legacy streaming format so notebook chat streams token-by-token like the chat tab.
181
+ - Frontend: add notebook chat view with conversation messages, document sidebar with per-document delete, and topic summary display.
182
+ - Fix stale document list when re-opening a notebook by setting query staleTime to 0.
183
+ - Hide model selector on the Notebooks tab while keeping the settings ellipsis menu visible.
184
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.5.0
185
+
186
+ ## 2.4.0
187
+
188
+ ### Minor Changes
189
+
190
+ - 161c1f2: ai-notebooks route name is now notebooks. Added a route to fetch single notebooks session by id
191
+
192
+ ### Patch Changes
193
+
194
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.4.0
195
+
196
+ ## 2.3.0
197
+
198
+ ### Minor Changes
199
+
200
+ - dff8f34: All lightspeed query is now called with rhdh-docs vector_store. Notebooks app-config only now requires queryDefaults model and provider
201
+ All files uploaded to lightspeed-stack will be converted to .txt
202
+
203
+ ### Patch Changes
204
+
205
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.3.0
206
+
207
+ ## 2.2.1
208
+
209
+ ### Patch Changes
210
+
211
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.2.1
212
+
213
+ ## 2.2.0
214
+
215
+ ### Patch Changes
216
+
217
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.2.0
218
+
219
+ ## 2.1.0
220
+
221
+ ### Minor Changes
222
+
223
+ - cc98168: Migrated AI Notebooks from direct Llama Stack server to Lightspeed-Core integration
224
+
225
+ ### Patch Changes
226
+
227
+ - 4379c1a: change casing of notebooks to lowercase
228
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.1.0
229
+
230
+ ## 2.0.0
231
+
232
+ ### Major Changes
233
+
234
+ - 7db4bed: Implement AI Notebooks session, document, and query service
235
+
236
+ ### Minor Changes
237
+
238
+ - 024d5a8: Added MCP Server management backend APIs with per-user preferences, on-demand validation, and new permissions (lightspeed.mcp.read, lightspeed.mcp.manage)
239
+ - 0277bd0: Added the MCP servers selector/settings feature in Lightspeed with backend
240
+ integration for listing servers, per-user token updates, and validation.
241
+
242
+ In the settings panel, users can review server status, enable or disable
243
+ eligible servers, configure personal tokens, and get inline token validation
244
+ feedback. Token validation now runs automatically after typing stops and shows
245
+ success (`Connection successful`) or error (`Authorization failed. Try again.`)
246
+ before save.
247
+
248
+ - 01241c2: Backstage version bump to v1.49.2
249
+ moved existing app to app-legacy
250
+ app now runs the NFS model
251
+
252
+ ### Patch Changes
253
+
254
+ - a98cbba: Encrypt MCP user tokens at rest using AES-256-GCM when backend.auth.keys is configured, fix Bearer prefix for direct MCP server validation
255
+ - c45aa19: Add stop button to interrupt a streaming conversation
256
+ - 7f44387: remove bearer from mcp header to adhere to LCORE standard
257
+ - Updated dependencies [024d5a8]
258
+ - Updated dependencies [7db4bed]
259
+ - Updated dependencies [01241c2]
260
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@2.0.0
261
+
262
+ ## 1.4.0
263
+
264
+ ### Minor Changes
265
+
266
+ - 18aa761: **BREAKING** Replaces `fetch` function with built-in one and refactors source to fit the change. This change comes from [ADR014](https://github.com/backstage/backstage/blob/master/docs/architecture-decisions/adr014-use-fetch.md) that now recommends the use of the global built-in `fetch` function since Node v20.
267
+
268
+ The changes are contained for the `lightspeed-backend` plugin, the `node-fetch` direct dependency is removed from `package.json` and makes the following changes to the `router.ts` source:
269
+
270
+ ```diff
271
+ import { MiddlewareFactory } from '@backstage/backend-defaults/rootHttpRouter';
272
+ import { NotAllowedError } from '@backstage/errors';
273
+ import { createPermissionIntegrationRouter } from '@backstage/plugin-permission-node';
274
+
275
+ import express, { Router } from 'express';
276
+ import { createProxyMiddleware } from 'http-proxy-middleware';
277
+ -import fetch from 'node-fetch';
278
+
279
+ import {
280
+ lightspeedChatCreatePermission,
281
+ lightspeedChatDeletePermission,
282
+ lightspeedChatReadPermission,
283
+ lightspeedPermissions,
284
+ } from '@red-hat-developer-hub/backstage-plugin-lightspeed-common';
285
+
286
+ +import { Readable } from 'node:stream';
287
+ +
288
+ import { userPermissionAuthorization } from './permission';
289
+ import {
290
+ DEFAULT_HISTORY_LENGTH,
291
+ QueryRequestBody,
292
+ RouterOptions,
293
+ } from './types';
294
+ import { validateCompletionsRequest } from './validation';
295
+ ```
296
+
297
+ Response piping has changed for the result of the built-in `fetch`:
298
+
299
+ ```diff
300
+ if (!fetchResponse.ok) {
301
+ // Read the error body
302
+ const errorBody = await fetchResponse.json();
303
+ const errormsg = `Error from lightspeed-core server: ${errorBody.error?.message || errorBody?.detail?.cause || 'Unknown error'}`;
304
+ logger.error(errormsg);
305
+
306
+ // Return a 500 status for any upstream error
307
+ response.status(500).json({
308
+ error: errormsg,
309
+ });
310
+ +
311
+ + return
312
+ }
313
+
314
+ // Pipe the response back to the original response
315
+ -fetchResponse.body.pipe(response);
316
+ +if (fetchResponse.body) {
317
+ + const nodeStream = Readable.fromWeb(fetchResponse.body as any);
318
+ + nodeStream.pipe(response);
319
+ +}
320
+ ```
321
+
322
+ - 5ad82d7: Add support for multiple MCP servers with individual authentication headers
323
+
324
+ ### Patch Changes
325
+
326
+ - 442ccf5: Updated dependency `msw` to `2.12.9`.
327
+ - b1417ce: Updated dependency `msw` to `2.12.8`.
328
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.4.0
329
+
330
+ ## 1.3.0
331
+
332
+ ### Minor Changes
333
+
334
+ - 0a7c742: Backstage version bump to v1.47.3
335
+
336
+ ### Patch Changes
337
+
338
+ - Updated dependencies [0a7c742]
339
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.3.0
340
+
341
+ ## 1.2.3
342
+
343
+ ### Patch Changes
344
+
345
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.2.3
346
+
347
+ ## 1.2.2
348
+
349
+ ### Patch Changes
350
+
351
+ - aaac497: Updated dependency `prettier` to `3.8.1`.
352
+ - Updated dependencies [aaac497]
353
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.2.2
354
+
355
+ ## 1.2.1
356
+
357
+ ### Patch Changes
358
+
359
+ - 9c17c36: Updated dependency `prettier` to `3.8.0`.
360
+ - Updated dependencies [9c17c36]
361
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.2.1
362
+
363
+ ## 1.2.0
364
+
365
+ ### Patch Changes
366
+
367
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.2.0
368
+
369
+ ## 1.1.2
370
+
371
+ ### Patch Changes
372
+
373
+ - ee71606: Updated dependency `msw` to `2.12.7`.
374
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.1.2
375
+
376
+ ## 1.1.1
377
+
378
+ ### Patch Changes
379
+
380
+ - b0c55d6: Updated dependency `msw` to `2.12.4`.
381
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.1.1
382
+
383
+ ## 1.1.0
384
+
385
+ ### Minor Changes
386
+
387
+ - 99f35d5: Backstage version bump to v1.45.2
388
+
389
+ ### Patch Changes
390
+
391
+ - Updated dependencies [99f35d5]
392
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.1.0
393
+
394
+ ## 1.0.4
395
+
396
+ ### Patch Changes
397
+
398
+ - 234cc73: Updated dependency `msw` to `2.12.2`.
399
+ - 40b80fe: Remove "lifecycle" keywords and "supported-versions" in package.json. Change "lifecycle" to active in catalog.yaml
400
+ - Updated dependencies [58e26ba]
401
+ - Updated dependencies [40b80fe]
402
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.0.4
403
+
404
+ ## 1.0.3
405
+
406
+ ### Patch Changes
407
+
408
+ - e102a81: proxy PUT /v2/conversations/:conversation request
409
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.0.3
410
+
411
+ ## 1.0.2
412
+
413
+ ### Patch Changes
414
+
415
+ - c5fa204: Updated dependency `@types/express` to `4.17.25`.
416
+ Updated dependency `msw` to `2.11.6`.
417
+ Updated dependency `@patternfly/chatbot` to `6.4.1`.
418
+ Updated dependency `@patternfly/react-core` to `6.4.0`.
419
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@1.0.2
420
+
421
+ ## 1.0.1
422
+
423
+ ### Patch Changes
424
+
425
+ - 4fcf3d4: update the question validation prompt
426
+
427
+ ## 1.0.0
428
+
429
+ ### Major Changes
430
+
431
+ - c6e4f39: migrate from road-core to lightspeed-core
432
+
433
+ ### Patch Changes
434
+
435
+ - 2204143: Align lightspeed UI with LCS
436
+
437
+ ## 0.6.0
438
+
439
+ ### Minor Changes
440
+
441
+ - d922b04: Backstage version bump to v1.42.5
442
+
443
+ ### Patch Changes
444
+
445
+ - 4786755: Updated dependency `msw` to `2.11.3`.
446
+ - 1bbd3c2: Updated dependency `@langchain/openai` to `^0.6.0`.
447
+ Updated dependency `msw` to `2.11.1`.
448
+ - Updated dependencies [d922b04]
449
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.4.0
450
+
451
+ ## 0.5.7
452
+
453
+ ### Patch Changes
454
+
455
+ - d703c31: introduce systemPrompt config for user to change and override default system prompt
456
+
457
+ ## 0.5.6
458
+
459
+ ### Patch Changes
460
+
461
+ - 0e00cb6: Upgrade backstage to 1.39.1
462
+ - Updated dependencies [0e00cb6]
463
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.3.4
464
+
465
+ ## 0.5.5
466
+
467
+ ### Patch Changes
468
+
469
+ - 2ba3742: Add feedback API endpoints and controls in the UI to collect user feedback
470
+ - a79f849: Updated dependency `prettier` to `3.6.2`.
471
+ - Updated dependencies [a79f849]
472
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.3.3
473
+
474
+ ## 0.5.4
475
+
476
+ ### Patch Changes
477
+
478
+ - 5d80736: Renamed permissions to align with the updated naming convention:
479
+ - `lightspeed.conversations.read` → `lightspeed.chat.read`
480
+ - `lightspeed.conversations.create` → `lightspeed.chat.create`
481
+ - `lightspeed.conversations.delete` → `lightspeed.chat.delete`
482
+
483
+ - d51643f: Make Lightspeed service port configurable
484
+ - 7ca64e4: Updated dependency `msw` to `2.10.2`.
485
+ - Updated dependencies [5d80736]
486
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.3.2
487
+
488
+ ## 0.5.3
489
+
490
+ ### Patch Changes
491
+
492
+ - 4db7d36: Updated dependency `msw` to `2.8.7`.
493
+ - 5f129c4: Updated dependency `@types/express` to `4.17.23`.
494
+
495
+ ## 0.5.2
496
+
497
+ ### Patch Changes
498
+
499
+ - 1704cd9: Updated dependency `msw` to `2.7.6`.
500
+ - a9e5f32: Updated dependency `@openapitools/openapi-generator-cli` to `2.20.0`.
501
+ Updated dependency `prettier` to `3.5.3`.
502
+ Updated dependency `@redhat-developer/red-hat-developer-hub-theme` to `0.5.1`.
503
+ Updated dependency `@red-hat-developer-hub/backstage-plugin-theme` to `^0.6.0`.
504
+ Updated dependency `@janus-idp/cli` to `3.5.0`.
505
+ - 174e08c: Updated dependency `node-fetch` to `2.7.0`.
506
+ - 571d93e: Updated dependency `@types/express` to `4.17.22`.
507
+ - Updated dependencies [a9e5f32]
508
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.3.1
509
+
510
+ ## 0.5.1
511
+
512
+ ### Patch Changes
513
+
514
+ - d6bbaa9: Updated dependency `@langchain/openai` to `^0.5.0`.
515
+
516
+ ## 0.5.0
517
+
518
+ ### Minor Changes
519
+
520
+ - 0d6deb0: Updated @backstage/backend-test-utils to 1.3.0 and @backstage/repo-tools to 1.13.0
521
+
522
+ ## 0.4.1
523
+
524
+ ### Patch Changes
525
+
526
+ - 9fa7890: Updated dependency `msw` to `2.7.3`.
527
+
528
+ ## 0.4.0
529
+
530
+ ### Minor Changes
531
+
532
+ - 91a66a8: Backstage version bump to v1.35.1
533
+
534
+ ### Patch Changes
535
+
536
+ - Updated dependencies [91a66a8]
537
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.3.0
538
+
539
+ ## 0.3.3
540
+
541
+ ### Patch Changes
542
+
543
+ - 8001249: fix dynamic plugins packaging
544
+ - Updated dependencies [8001249]
545
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.2.1
546
+
547
+ ## 0.3.2
548
+
549
+ ### Patch Changes
550
+
551
+ - dc61798: Updated dependency `@langchain/core` to `^0.3.0`.
552
+
553
+ ## 0.3.1
554
+
555
+ ### Patch Changes
556
+
557
+ - e0ef375: Updated dependency `@langchain/openai` to `^0.3.0`.
558
+
559
+ ## 0.3.0
560
+
561
+ ### Minor Changes
562
+
563
+ - e41a860: Backstage version bump to v1.34.2
564
+
565
+ ### Patch Changes
566
+
567
+ - Updated dependencies [e41a860]
568
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.2.0
569
+
570
+ ## 0.2.2
571
+
572
+ ### Patch Changes
573
+
574
+ - 5e4bdd2: Updated dependency `msw` to `2.7.0`.
575
+ - d59e940: Updated dependency `prettier` to `3.4.2`.
576
+ - 414250a: Updated dependency `msw` to `2.6.8`.
577
+ - Updated dependencies [d59e940]
578
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.1.3
579
+
580
+ ## 0.2.1
581
+
582
+ ### Patch Changes
583
+
584
+ - Updated dependencies [5f6faba]
585
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.1.2
586
+
587
+ ## 0.2.0
588
+
589
+ ### Minor Changes
590
+
591
+ - c113d1a: - add RBAC permission support
592
+ - list all conversations for logged in users and generate conversation summary. [#2465](https://github.com/janus-idp/backstage-plugins/pull/2465)
593
+ - add conversation create API endpoint. [#2403](https://github.com/janus-idp/backstage-plugins/pull/2403)
594
+ - add streaming support in chat completion API. [#2238](https://github.com/janus-idp/backstage-plugins/pull/2238)
595
+ - add conversation GET and DELETE API endpoints. [#2211](https://github.com/janus-idp/backstage-plugins/pull/2211)
596
+ - Lightspeed backend plugin [#2115](https://github.com/janus-idp/backstage-plugins/pull/2115)
597
+
598
+ ### Patch Changes
599
+
600
+ - Updated dependencies [c113d1a]
601
+ - @red-hat-developer-hub/backstage-plugin-lightspeed-common@0.1.1
602
+
603
+ ## 0.1.1
604
+
605
+ ### Patch Changes
606
+
607
+ - 9fccf3f: Migrated from [janus-idp/backstage-plugins](https://github.com/janus-idp/backstage-plugins).