@eeacms/volto-eea-chatbot 1.0.9

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 (133) hide show
  1. package/.coverage.babel.config.js +9 -0
  2. package/.eslintrc.js +68 -0
  3. package/.husky/pre-commit +2 -0
  4. package/.release-it.json +17 -0
  5. package/AGENTS.md +89 -0
  6. package/CHANGELOG.md +770 -0
  7. package/DEVELOP.md +124 -0
  8. package/LICENSE.md +9 -0
  9. package/README.md +170 -0
  10. package/RELEASE.md +74 -0
  11. package/TESTING.md +5 -0
  12. package/babel.config.js +17 -0
  13. package/bootstrap +41 -0
  14. package/cypress.config.js +27 -0
  15. package/docker-compose.yml +32 -0
  16. package/jest-addon.config.js +465 -0
  17. package/jest.setup.js +65 -0
  18. package/locales/de/LC_MESSAGES/volto.po +14 -0
  19. package/locales/en/LC_MESSAGES/volto.po +14 -0
  20. package/locales/it/LC_MESSAGES/volto.po +14 -0
  21. package/locales/ro/LC_MESSAGES/volto.po +14 -0
  22. package/locales/volto.pot +16 -0
  23. package/package.json +98 -0
  24. package/razzle.extend.js +40 -0
  25. package/src/ChatBlock/ChatBlockEdit.jsx +46 -0
  26. package/src/ChatBlock/ChatBlockView.jsx +21 -0
  27. package/src/ChatBlock/chat/AIMessage.tsx +566 -0
  28. package/src/ChatBlock/chat/ChatMessage.tsx +35 -0
  29. package/src/ChatBlock/chat/ChatWindow.tsx +288 -0
  30. package/src/ChatBlock/chat/UserMessage.tsx +27 -0
  31. package/src/ChatBlock/chat/index.ts +4 -0
  32. package/src/ChatBlock/components/AutoResizeTextarea.jsx +67 -0
  33. package/src/ChatBlock/components/BlinkingDot.tsx +3 -0
  34. package/src/ChatBlock/components/ChatMessageFeedback.jsx +77 -0
  35. package/src/ChatBlock/components/EmptyState.jsx +70 -0
  36. package/src/ChatBlock/components/FeedbackModal.jsx +125 -0
  37. package/src/ChatBlock/components/HalloumiFeedback.jsx +126 -0
  38. package/src/ChatBlock/components/Icon.tsx +35 -0
  39. package/src/ChatBlock/components/QualityCheckToggle.jsx +26 -0
  40. package/src/ChatBlock/components/RelatedQuestions.jsx +59 -0
  41. package/src/ChatBlock/components/Source.jsx +93 -0
  42. package/src/ChatBlock/components/SourceChip.tsx +55 -0
  43. package/src/ChatBlock/components/Spinner.jsx +3 -0
  44. package/src/ChatBlock/components/UserActionsToolbar.jsx +44 -0
  45. package/src/ChatBlock/components/WebResultIcon.tsx +42 -0
  46. package/src/ChatBlock/components/markdown/Citation.jsx +70 -0
  47. package/src/ChatBlock/components/markdown/ClaimModal.jsx +98 -0
  48. package/src/ChatBlock/components/markdown/ClaimSegments.jsx +172 -0
  49. package/src/ChatBlock/components/markdown/RenderClaimView.jsx +96 -0
  50. package/src/ChatBlock/components/markdown/colors.js +29 -0
  51. package/src/ChatBlock/components/markdown/colors.less +52 -0
  52. package/src/ChatBlock/components/markdown/colors.test.js +69 -0
  53. package/src/ChatBlock/components/markdown/index.js +115 -0
  54. package/src/ChatBlock/fonts/DejaVuSans.ttf +0 -0
  55. package/src/ChatBlock/hocs/withOnyxData.jsx +46 -0
  56. package/src/ChatBlock/hooks/index.ts +7 -0
  57. package/src/ChatBlock/hooks/useChatController.ts +333 -0
  58. package/src/ChatBlock/hooks/useChatStreaming.ts +82 -0
  59. package/src/ChatBlock/hooks/useDeepCompareMemoize.js +17 -0
  60. package/src/ChatBlock/hooks/useMarked.js +44 -0
  61. package/src/ChatBlock/hooks/useQualityMarkers.js +119 -0
  62. package/src/ChatBlock/hooks/useScrollonStream.ts +131 -0
  63. package/src/ChatBlock/hooks/useToolDisplayTiming.ts +80 -0
  64. package/src/ChatBlock/index.js +32 -0
  65. package/src/ChatBlock/packets/MultiToolRenderer.tsx +235 -0
  66. package/src/ChatBlock/packets/RendererComponent.tsx +115 -0
  67. package/src/ChatBlock/packets/index.ts +4 -0
  68. package/src/ChatBlock/packets/renderers/CustomToolRenderer.tsx +63 -0
  69. package/src/ChatBlock/packets/renderers/FetchToolRenderer.tsx +59 -0
  70. package/src/ChatBlock/packets/renderers/ImageToolRenderer.tsx +62 -0
  71. package/src/ChatBlock/packets/renderers/MessageTextRenderer.tsx +172 -0
  72. package/src/ChatBlock/packets/renderers/ReasoningRenderer.tsx +122 -0
  73. package/src/ChatBlock/packets/renderers/SearchToolRenderer.tsx +323 -0
  74. package/src/ChatBlock/packets/renderers/index.ts +6 -0
  75. package/src/ChatBlock/schema.js +403 -0
  76. package/src/ChatBlock/services/index.ts +3 -0
  77. package/src/ChatBlock/services/messageProcessor.ts +348 -0
  78. package/src/ChatBlock/services/packetUtils.ts +48 -0
  79. package/src/ChatBlock/services/streamingService.ts +342 -0
  80. package/src/ChatBlock/style.less +1881 -0
  81. package/src/ChatBlock/tests/AIMessage.test.jsx +95 -0
  82. package/src/ChatBlock/tests/AutoResizeTextarea.test.jsx +49 -0
  83. package/src/ChatBlock/tests/BlinkingDot.test.jsx +71 -0
  84. package/src/ChatBlock/tests/ChatMessageFeedback.test.jsx +73 -0
  85. package/src/ChatBlock/tests/Citation.test.jsx +107 -0
  86. package/src/ChatBlock/tests/EmptyState.test.jsx +137 -0
  87. package/src/ChatBlock/tests/FeedbackModal.test.jsx +138 -0
  88. package/src/ChatBlock/tests/HalloumiFeedback.test.jsx +94 -0
  89. package/src/ChatBlock/tests/QualityCheckToggle.test.jsx +105 -0
  90. package/src/ChatBlock/tests/RelatedQuestions.test.jsx +215 -0
  91. package/src/ChatBlock/tests/Source.test.jsx +79 -0
  92. package/src/ChatBlock/tests/Spinner.test.jsx +18 -0
  93. package/src/ChatBlock/tests/index.test.js +51 -0
  94. package/src/ChatBlock/tests/messageProcessor.test.jsx +154 -0
  95. package/src/ChatBlock/tests/schema.test.js +166 -0
  96. package/src/ChatBlock/tests/useDeepCompareMemoize.test.js +107 -0
  97. package/src/ChatBlock/tests/useToolDisplayTiming.test.jsx +151 -0
  98. package/src/ChatBlock/types/cssmodules.d.ts +7 -0
  99. package/src/ChatBlock/types/interfaces.ts +154 -0
  100. package/src/ChatBlock/types/slate.d.ts +3 -0
  101. package/src/ChatBlock/types/streamingModels.ts +267 -0
  102. package/src/ChatBlock/types/volto.d.ts +3 -0
  103. package/src/ChatBlock/utils/citations.ts +25 -0
  104. package/src/ChatBlock/utils/index.tsx +114 -0
  105. package/src/halloumi/README.md +1 -0
  106. package/src/halloumi/generative.js +219 -0
  107. package/src/halloumi/generative.test.js +88 -0
  108. package/src/halloumi/middleware.js +70 -0
  109. package/src/halloumi/postprocessing.js +273 -0
  110. package/src/halloumi/postprocessing.test.js +441 -0
  111. package/src/halloumi/preprocessing.js +115 -0
  112. package/src/halloumi/preprocessing.test.js +245 -0
  113. package/src/icons/bot.svg +1 -0
  114. package/src/icons/check.svg +1 -0
  115. package/src/icons/chevron.svg +3 -0
  116. package/src/icons/clear.svg +1 -0
  117. package/src/icons/copy.svg +1 -0
  118. package/src/icons/done.svg +5 -0
  119. package/src/icons/external-link.svg +1 -0
  120. package/src/icons/file.svg +1 -0
  121. package/src/icons/glasses.svg +1 -0
  122. package/src/icons/globe.svg +1 -0
  123. package/src/icons/rotate.svg +1 -0
  124. package/src/icons/search.svg +5 -0
  125. package/src/icons/send.svg +1 -0
  126. package/src/icons/square-pen.svg +1 -0
  127. package/src/icons/stop.svg +9 -0
  128. package/src/icons/thumbs-down.svg +1 -0
  129. package/src/icons/thumbs-up.svg +1 -0
  130. package/src/icons/user.svg +1 -0
  131. package/src/index.js +58 -0
  132. package/src/middleware.js +250 -0
  133. package/tsconfig.json +40 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,770 @@
1
+ ### Changelog
2
+
3
+ All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4
+
5
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
+
7
+ ### [1.0.8](https://github.com/eea/volto-chatbot/compare/1.0.7...1.0.8) - 26 January 2026
8
+
9
+ #### :rocket: New Features
10
+
11
+ - feat(search): allow overriding task prompt [Miu Razvan - [`17bda29`](https://github.com/eea/volto-chatbot/commit/17bda29f725901f606c5e9bd0b277e1c8c969515)]
12
+
13
+ #### :house: Internal changes
14
+
15
+ - style: Automated code fix [eea-jenkins - [`ca76855`](https://github.com/eea/volto-chatbot/commit/ca76855337b12f606de509c139c1fe783c27e59b)]
16
+
17
+ #### :hammer_and_wrench: Others
18
+
19
+ - increase code coverage [Miu Razvan - [`bb4de69`](https://github.com/eea/volto-chatbot/commit/bb4de690a31153c51d9603888138bfdc051409a7)]
20
+ ### [1.0.7](https://github.com/eea/volto-chatbot/compare/1.0.6...1.0.7) - 21 January 2026
21
+
22
+ ### [1.0.6](https://github.com/eea/volto-chatbot/compare/1.0.5...1.0.6) - 20 January 2026
23
+
24
+ #### :rocket: New Features
25
+
26
+ - feat(ClaimModal): show claimString based on clicked text [Miu Razvan - [`c982292`](https://github.com/eea/volto-chatbot/commit/c98229282c9d60a4d328c5ceb2abc842c0783c88)]
27
+ - feat(ClaimModal): redesign ClaimModal [Miu Razvan - [`b75212c`](https://github.com/eea/volto-chatbot/commit/b75212c6c898eb35f9f60e95840ae4b6c19e9c86)]
28
+ - feat(ClaimModal): better format ClaimModal [Miu Razvan - [`c42e0f6`](https://github.com/eea/volto-chatbot/commit/c42e0f6924ba03f63e631b5ab4e270f42978754c)]
29
+
30
+ #### :house: Internal changes
31
+
32
+ - style: Automated code fix [eea-jenkins - [`a72ec07`](https://github.com/eea/volto-chatbot/commit/a72ec074c3197f84efd6e6be3d0f00a2972667d9)]
33
+ - style: Automated code fix [eea-jenkins - [`a9966e8`](https://github.com/eea/volto-chatbot/commit/a9966e8032a3cd5247981982d8124e104b2075c6)]
34
+
35
+ #### :hammer_and_wrench: Others
36
+
37
+ - fix sonarqube [Miu Razvan - [`0d0c26c`](https://github.com/eea/volto-chatbot/commit/0d0c26c5d3f6cf7e2d295e319358def61ff57d1f)]
38
+ - improved ClaimModal [Miu Razvan - [`2e5fc70`](https://github.com/eea/volto-chatbot/commit/2e5fc7009a0cb02d8d16fcf35daab7386a2c89a0)]
39
+ - fix tests [Miu Razvan - [`4c43654`](https://github.com/eea/volto-chatbot/commit/4c43654f61c0a1acec087c1009a4607f7a8d1be4)]
40
+ - add unit tests [Miu Razvan - [`7ccdae9`](https://github.com/eea/volto-chatbot/commit/7ccdae93743c69d68748034b3e5ee1d95e8b052d)]
41
+ - restore citation styling [Miu Razvan - [`922c84e`](https://github.com/eea/volto-chatbot/commit/922c84eef06512aaad8ec9f2c6c8de059603b19c)]
42
+ ### [1.0.5](https://github.com/eea/volto-chatbot/compare/1.0.4...1.0.5) - 16 January 2026
43
+
44
+ ### [1.0.4](https://github.com/eea/volto-chatbot/compare/1.0.3...1.0.4) - 15 January 2026
45
+
46
+ ### [1.0.3](https://github.com/eea/volto-chatbot/compare/1.0.2...1.0.3) - 13 January 2026
47
+
48
+ #### :bug: Bug Fixes
49
+
50
+ - fix: volto-sentry version - 0.4.0 [Alin Voinea - [`8477634`](https://github.com/eea/volto-chatbot/commit/8477634fc340158ea0de179c7742a6f18a952717)]
51
+
52
+ ### [1.0.2](https://github.com/eea/volto-chatbot/compare/1.0.1...1.0.2) - 5 December 2025
53
+
54
+ #### :bug: Bug Fixes
55
+
56
+ - fix(ChatBlock): improve accessibility and UI refinements [Miu Razvan - [`726db95`](https://github.com/eea/volto-chatbot/commit/726db95c11a35ae2d8fb5f614bd19067cb1d1397)]
57
+
58
+ #### :house: Internal changes
59
+
60
+ - style: Automated code fix [eea-jenkins - [`ffa693c`](https://github.com/eea/volto-chatbot/commit/ffa693ca05f5a5f2ad1f961487dd5e6989cdab5b)]
61
+
62
+ #### :hammer_and_wrench: Others
63
+
64
+ - fix tests [Miu Razvan - [`9a28068`](https://github.com/eea/volto-chatbot/commit/9a28068f34c0800f14a38a874718a568d7cc59b9)]
65
+ ### [1.0.1](https://github.com/eea/volto-chatbot/compare/1.0.0...1.0.1) - 28 November 2025
66
+
67
+ #### :hammer_and_wrench: Others
68
+
69
+ - clean up [Miu Razvan - [`d79af49`](https://github.com/eea/volto-chatbot/commit/d79af498811d8f7acbece14efda357b2572a73d2)]
70
+ ## [1.0.0](https://github.com/eea/volto-chatbot/compare/0.6.1...1.0.0) - 25 November 2025
71
+
72
+ #### :rocket: New Features
73
+
74
+ - feat: implement v2 chatbot [Miu Razvan - [`66763f0`](https://github.com/eea/volto-chatbot/commit/66763f031ce3687042c689e2a11666e6692b2b52)]
75
+ - feat: add deep research toggle - refs #286143 [kreafox - [`4a21e9b`](https://github.com/eea/volto-chatbot/commit/4a21e9b687a5ffc0ff69461c97cd5b102cf2e5a0)]
76
+
77
+ #### :house: Internal changes
78
+
79
+ - style: Automated code fix [eea-jenkins - [`dee2e0d`](https://github.com/eea/volto-chatbot/commit/dee2e0d9f89bbac302f0e8b9ce41d0037a5c799d)]
80
+ - style: Automated code fix [eea-jenkins - [`358b384`](https://github.com/eea/volto-chatbot/commit/358b384e62a35d097ffc99ed97b7a1d1d428b832)]
81
+ - style: Automated code fix [eea-jenkins - [`14a4739`](https://github.com/eea/volto-chatbot/commit/14a4739493e05846dc78c50587adb3c5cf9a00cb)]
82
+ - style: Automated code fix [eea-jenkins - [`f2c6d90`](https://github.com/eea/volto-chatbot/commit/f2c6d9003767ab9cfe9c8a8d0ead3ebac66d567d)]
83
+ - style: Automated code fix [eea-jenkins - [`b7bfa4a`](https://github.com/eea/volto-chatbot/commit/b7bfa4a581234685f713d7c7418581655d9e14a1)]
84
+ - style: Automated code fix [eea-jenkins - [`3595c14`](https://github.com/eea/volto-chatbot/commit/3595c147aa683d9beed64eb6a11259a85528a178)]
85
+ - style: Automated code fix [eea-jenkins - [`111a6c3`](https://github.com/eea/volto-chatbot/commit/111a6c3eeb39eb372092160a51549b3a78b0c8fc)]
86
+ - style: Automated code fix [eea-jenkins - [`d007d73`](https://github.com/eea/volto-chatbot/commit/d007d73c47dc957f2b33ea1ab2cf20d1ebb01a7a)]
87
+ - style: improve and fix deep research styling - refs #286143 [kreafox - [`64999c6`](https://github.com/eea/volto-chatbot/commit/64999c6ff4a66ec82ea5f44ad8696999bb0d41d4)]
88
+
89
+ #### :hammer_and_wrench: Others
90
+
91
+ - Add breaking notice in readme [Miu Razvan - [`dd06c11`](https://github.com/eea/volto-chatbot/commit/dd06c1175158531c695c8b639e95855b5e5aa7a6)]
92
+ - make auto scroll work [Miu Razvan - [`a068bf1`](https://github.com/eea/volto-chatbot/commit/a068bf1352560bf56a6b436dec07cfbff199c753)]
93
+ - update [Miu Razvan - [`b79c436`](https://github.com/eea/volto-chatbot/commit/b79c4363e45cd8f71b6bb53f6ddcdb73983f55ef)]
94
+ - fix sonarqube [Miu Razvan - [`b36400f`](https://github.com/eea/volto-chatbot/commit/b36400f844ff4473374df5103d720db326eb7923)]
95
+ - eslint fix [Miu Razvan - [`26844ab`](https://github.com/eea/volto-chatbot/commit/26844ab938eda3126a72f14a29cb6ca9a196b00a)]
96
+ - merge origin/master into deepresearch branch [Miu Razvan - [`5773c54`](https://github.com/eea/volto-chatbot/commit/5773c548e20eb5f3655d04d8795b25f239d3fc2f)]
97
+ - fix tests [Miu Razvan - [`edbd7a7`](https://github.com/eea/volto-chatbot/commit/edbd7a714bc1170691d72c1dd60f3e27232d72fd)]
98
+ - improve message processing [Miu Razvan - [`7b35a7a`](https://github.com/eea/volto-chatbot/commit/7b35a7ae12443b283c7ca6c9cccb02fab060db77)]
99
+ - clean up [Miu Razvan - [`ef1a384`](https://github.com/eea/volto-chatbot/commit/ef1a3849cc7fd1982790336cbb77aae5b37ecf46)]
100
+ - Merge master into deepsearch branch [Miu Razvan - [`2e112fa`](https://github.com/eea/volto-chatbot/commit/2e112fa9939a39bdd003337b02feea0166a3c8f9)]
101
+ - Fix context [Tiberiu Ichim - [`17af9b1`](https://github.com/eea/volto-chatbot/commit/17af9b185e878a5f48dd6858ed7a20f7a13ab467)]
102
+ - Improve readability [Tiberiu Ichim - [`52f483a`](https://github.com/eea/volto-chatbot/commit/52f483af808a9e2fcb3bbe38d0b02183a538c5a3)]
103
+ - Start the parser [Tiberiu Ichim - [`b1cc27d`](https://github.com/eea/volto-chatbot/commit/b1cc27d3c9420d3380ef4a391412d561920ecb31)]
104
+ - Improve mocking [Tiberiu Ichim - [`4a0edff`](https://github.com/eea/volto-chatbot/commit/4a0edff0e5dbf54202f1d2f2ebd9172b7511ad52)]
105
+ - Add delay to mock [Tiberiu Ichim - [`cb79174`](https://github.com/eea/volto-chatbot/commit/cb79174cc26c1151d5150da3fa1e6c15102006fb)]
106
+ - Improve toggle of agentic search [Tiberiu Ichim - [`b24c9d1`](https://github.com/eea/volto-chatbot/commit/b24c9d1583113139b03d53322839d1568b3ac88d)]
107
+ - Force use_agentic_search to be false, for now [Tiberiu Ichim - [`293b106`](https://github.com/eea/volto-chatbot/commit/293b10633f2e497f8df368d9e0091b9cff50cf89)]
108
+ - Clear eslint [Tiberiu Ichim - [`e869eca`](https://github.com/eea/volto-chatbot/commit/e869ecab278de187b22cd42c590ca659e482b87a)]
109
+ - Clear eslint [Tiberiu Ichim - [`e9c2619`](https://github.com/eea/volto-chatbot/commit/e9c261953234a477adb178d9ba6c2c680bb57317)]
110
+ - WIP [Tiberiu Ichim - [`04a2539`](https://github.com/eea/volto-chatbot/commit/04a25395bdbd8a9a33f01ac409693818be0b6be4)]
111
+ - More info [Tiberiu Ichim - [`8f10490`](https://github.com/eea/volto-chatbot/commit/8f104906e7f76d5566ae7637d5ab4e3ab696fd94)]
112
+ - More info [Tiberiu Ichim - [`b7fd58e`](https://github.com/eea/volto-chatbot/commit/b7fd58e468f7982a039aafa3e685271f39ae0b7d)]
113
+ - More info [Tiberiu Ichim - [`d708a58`](https://github.com/eea/volto-chatbot/commit/d708a58f8116ad87b2c1234b1f8a927049676b09)]
114
+ - Mock call [Tiberiu Ichim - [`7023cf9`](https://github.com/eea/volto-chatbot/commit/7023cf9a125894bcda78d83094f7f30c200920ce)]
115
+ - Mock call [Tiberiu Ichim - [`bbe81f6`](https://github.com/eea/volto-chatbot/commit/bbe81f65d6f6a8137af4b9cb1dcd1f67c83d7c93)]
116
+ - Fixes [Tiberiu Ichim - [`e96b503`](https://github.com/eea/volto-chatbot/commit/e96b503b2a055a0cfbc2b46179b731980c4204a6)]
117
+ ### [0.6.1](https://github.com/eea/volto-chatbot/compare/0.6.0...0.6.1) - 13 November 2025
118
+
119
+ ### [0.6.0](https://github.com/eea/volto-chatbot/compare/0.5.6...0.6.0) - 27 October 2025
120
+
121
+ #### :house: Internal changes
122
+
123
+ - style: Automated code fix [eea-jenkins - [`1f2478e`](https://github.com/eea/volto-chatbot/commit/1f2478eb2eb3dcadaa4bb2c762394676829946b7)]
124
+ - style: Automated code fix [eea-jenkins - [`55382ac`](https://github.com/eea/volto-chatbot/commit/55382ac7c6bbfcfc9ec15b4c04a8001a2586d255)]
125
+ - style: Automated code fix [eea-jenkins - [`030ef0d`](https://github.com/eea/volto-chatbot/commit/030ef0d8323646d33c0ebcb727a7a026888f5f74)]
126
+
127
+ #### :hammer_and_wrench: Others
128
+
129
+ - Release 0.6.0 [Alin Voinea - [`d50d0c7`](https://github.com/eea/volto-chatbot/commit/d50d0c72437cb7fb5064670dca9d9bc1a8fe800d)]
130
+ - Remove unused var [Tiberiu Ichim - [`27e8d6e`](https://github.com/eea/volto-chatbot/commit/27e8d6e8366523f0d2026e423f9cbb0be0bae9be)]
131
+ - Disable skipping if too many sources [Tiberiu Ichim - [`9347470`](https://github.com/eea/volto-chatbot/commit/9347470984c5ead0f0084bf0de4300d8d2545a7c)]
132
+ - Set default to 100 [Tiberiu Ichim - [`b9003d4`](https://github.com/eea/volto-chatbot/commit/b9003d4bcb24243180850fbf7fdc2d69f8a74474)]
133
+ - Fix code according to review [Tiberiu Ichim - [`c779892`](https://github.com/eea/volto-chatbot/commit/c779892361e4f12549c6bb6df23b06c35c228d5b)]
134
+ - Concatenate sentences to decrease the number of halloumi segments down to a configurable setting [Tiberiu Ichim - [`4242ac6`](https://github.com/eea/volto-chatbot/commit/4242ac6a1caaf2cd6600bc43d90c9779a362d0bf)]
135
+ - Env vars [Tiberiu Ichim - [`f789e2b`](https://github.com/eea/volto-chatbot/commit/f789e2b58aa8492657482f5cb3dab4df76bf1df5)]
136
+ - Add env vars readme [Tiberiu Ichim - [`4b8d231`](https://github.com/eea/volto-chatbot/commit/4b8d23147bd171223fc21cc96d6fd90f8d099515)]
137
+ - Add .nvmrc [Tiberiu Ichim - [`f333e6e`](https://github.com/eea/volto-chatbot/commit/f333e6ef088687712ad734030f2bc31f43a8b081)]
138
+ - Remove console.log [Tiberiu Ichim - [`8b65d65`](https://github.com/eea/volto-chatbot/commit/8b65d65cea347b3e3294a8ca1457286282d274cd)]
139
+ - Fix test [Tiberiu Ichim - [`026f229`](https://github.com/eea/volto-chatbot/commit/026f22961325395d3d32d4c5c47bdd108eb7063d)]
140
+ - Fix test [Tiberiu Ichim - [`76273ab`](https://github.com/eea/volto-chatbot/commit/76273ab266dfea88240b6f8b37021ca778794395)]
141
+ - Fix test [Tiberiu Ichim - [`88340a5`](https://github.com/eea/volto-chatbot/commit/88340a593b5cfcf8f47a8e2bbca469d065236e3c)]
142
+ - Add unittest [Tiberiu Ichim - [`7a6f93f`](https://github.com/eea/volto-chatbot/commit/7a6f93fd5b8dc77a6e94deeeba467dfac9505eb2)]
143
+ - No console.log [Tiberiu Ichim - [`bd0be80`](https://github.com/eea/volto-chatbot/commit/bd0be8096f6c4bb009e88dcb177234d583355025)]
144
+ - Add debugging dummy data [Tiberiu Ichim - [`3223d68`](https://github.com/eea/volto-chatbot/commit/3223d684008a29494e42d80c4400dd2cc79c7066)]
145
+ ### [0.5.6](https://github.com/eea/volto-chatbot/compare/0.5.5...0.5.6) - 22 October 2025
146
+
147
+ ### [0.5.5](https://github.com/eea/volto-chatbot/compare/0.5.4...0.5.5) - 10 October 2025
148
+
149
+ #### :house: Internal changes
150
+
151
+ - chore: add remark-preset-wooorm [kreafox - [`a735d62`](https://github.com/eea/volto-chatbot/commit/a735d6293e6f73d63fb51f99e592940d80ab1539)]
152
+
153
+ ### [0.5.4](https://github.com/eea/volto-chatbot/compare/0.5.3...0.5.4) - 9 October 2025
154
+
155
+ #### :house: Internal changes
156
+
157
+ - chore: update package.json [kreafox - [`8295ca7`](https://github.com/eea/volto-chatbot/commit/8295ca7a6dcbae33b89754b69da263d3d283414e)]
158
+
159
+ ### [0.5.3](https://github.com/eea/volto-chatbot/compare/0.5.2...0.5.3) - 7 October 2025
160
+
161
+ #### :house: Internal changes
162
+
163
+ - chore: add unist-util-visit as dependency [kreafox - [`96f6378`](https://github.com/eea/volto-chatbot/commit/96f637896e9049b38f649d20990c25c0ab4e0440)]
164
+
165
+ ### [0.5.2](https://github.com/eea/volto-chatbot/compare/0.5.1...0.5.2) - 27 September 2025
166
+
167
+ ### [0.5.1](https://github.com/eea/volto-chatbot/compare/0.5.0...0.5.1) - 25 September 2025
168
+
169
+ #### :house: Internal changes
170
+
171
+ - chore: package.json [Alin Voinea - [`fa4d5af`](https://github.com/eea/volto-chatbot/commit/fa4d5afa123cbcb1817ee71fe827c83cfd246438)]
172
+
173
+ #### :hammer_and_wrench: Others
174
+
175
+ - Properly render tables [Tiberiu Ichim - [`1a405ca`](https://github.com/eea/volto-chatbot/commit/1a405ca6c9597fde2331d89b6759313ab81d3a33)]
176
+ - Properly pass down remarkgfm [Tiberiu Ichim - [`38ee5c6`](https://github.com/eea/volto-chatbot/commit/38ee5c69e29d46a84cdbd4726f6eaffd810ccc28)]
177
+ ### [0.5.0](https://github.com/eea/volto-chatbot/compare/0.4.0...0.5.0) - 22 September 2025
178
+
179
+ #### :bug: Bug Fixes
180
+
181
+ - fix: ESLint error [kreafox - [`b97f9bf`](https://github.com/eea/volto-chatbot/commit/b97f9bf64bdc36f00adf4586dab451a7e12ee500)]
182
+ - fix: render empty div [kreafox - [`3c74a18`](https://github.com/eea/volto-chatbot/commit/3c74a18b0c8eb5307f9c638c50f0f9269eb170a9)]
183
+
184
+ #### :house: Internal changes
185
+
186
+ - style: Automated code fix [eea-jenkins - [`010b7aa`](https://github.com/eea/volto-chatbot/commit/010b7aa1cccc5ebd5b090932d149d5e29e34f444)]
187
+ - style: css polishment [kreafox - [`c832123`](https://github.com/eea/volto-chatbot/commit/c8321239ce443e29461debb8b2233ad64f839860)]
188
+
189
+ #### :hammer_and_wrench: Others
190
+
191
+ - Release 0.5.0 [Alin Voinea - [`c9306f6`](https://github.com/eea/volto-chatbot/commit/c9306f6e522b41e725cd69edfe0a1a6dab4c922f)]
192
+ - add @plone-collective/volto-sentry [kreafox - [`1b295ee`](https://github.com/eea/volto-chatbot/commit/1b295eeacbab6f953a80ede64fbb6e4a33513e40)]
193
+ - test: update snapshot [kreafox - [`90ebce4`](https://github.com/eea/volto-chatbot/commit/90ebce4f612814dc01ac5c049648e32566d5332c)]
194
+ - Code cleanup [Tiberiu Ichim - [`514b0a6`](https://github.com/eea/volto-chatbot/commit/514b0a61b7b94a532ec1318632af3f07a9843ae3)]
195
+ - Don't throw, use sentry to log [Tiberiu Ichim - [`9f09d08`](https://github.com/eea/volto-chatbot/commit/9f09d0893fe68615de43ee6a75222a243b82e19f)]
196
+ - Update src/halloumi/postprocessing.js [Tiberiu Ichim - [`5aa3c4f`](https://github.com/eea/volto-chatbot/commit/5aa3c4fb843475681c6793be83ccb2b4aef989db)]
197
+ - Update src/ChatBlock/useQualityMarkers.js [Tiberiu Ichim - [`d267f0b`](https://github.com/eea/volto-chatbot/commit/d267f0be86b9ac40da5d2af2cc3af210d3d23299)]
198
+ - Throw error [Tiberiu Ichim - [`6455efa`](https://github.com/eea/volto-chatbot/commit/6455efa4b9d5c7de047af67af564043d311eb5e1)]
199
+ - Add debugging [Tiberiu Ichim - [`3c97cd1`](https://github.com/eea/volto-chatbot/commit/3c97cd1720a92ffae1a6e0b0a6cd8887a5c68c32)]
200
+ ### [0.4.0](https://github.com/eea/volto-chatbot/compare/0.3.2...0.4.0) - 12 September 2025
201
+
202
+ #### :rocket: New Features
203
+
204
+ - feat: add sources sidebar - refs #352621 [kreafox - [`fc10ca9`](https://github.com/eea/volto-chatbot/commit/fc10ca92b4d73c8c79b3bf5ec054c30f0a8cf096)]
205
+
206
+ #### :bug: Bug Fixes
207
+
208
+ - fix: duplicate 'color' in css [kreafox - [`ecaeec4`](https://github.com/eea/volto-chatbot/commit/ecaeec4783ffd7f6b630bbd475cf25030d457b7d)]
209
+
210
+ #### :nail_care: Enhancements
211
+
212
+ - change: always show tabs if at least one source exists [kreafox - [`536d107`](https://github.com/eea/volto-chatbot/commit/536d107ff6e4a11b19c3d435acb5b9a6ba1531f6)]
213
+ - refactor: simplify ChatMessageBubble by extracting HalloumiFeedback [kreafox - [`c8fa437`](https://github.com/eea/volto-chatbot/commit/c8fa43712cac4db2e91299770330034e68ad3292)]
214
+ - change: fix case when there are many sources (WIP) - refs #291395 [kreafox - [`d5a8964`](https://github.com/eea/volto-chatbot/commit/d5a8964e1105327d0994eedeb2b8634fb4d4d765)]
215
+
216
+ #### :house: Internal changes
217
+
218
+ - style: Automated code fix [eea-jenkins - [`71adf60`](https://github.com/eea/volto-chatbot/commit/71adf60c211fd4b551bdcef9a279380d522c9f66)]
219
+ - style: Automated code fix [eea-jenkins - [`81e07b5`](https://github.com/eea/volto-chatbot/commit/81e07b50e81aef08924065249e56d5ba63b59a7c)]
220
+ - style: small improvements [kreafox - [`0ed25c3`](https://github.com/eea/volto-chatbot/commit/0ed25c332901f4906f96d5c0a49c910a91cb6a06)]
221
+ - style: small improvements [kreafox - [`9de8188`](https://github.com/eea/volto-chatbot/commit/9de81883383d2a6852a1f5dac2bb79f4b12d2239)]
222
+ - chore: cleanup [kreafox - [`ddbd91e`](https://github.com/eea/volto-chatbot/commit/ddbd91e1e082f6226a34b0ee638f54c845fa90f7)]
223
+ - style: Automated code fix [eea-jenkins - [`adcdec6`](https://github.com/eea/volto-chatbot/commit/adcdec6d1232f093617cbdfa244d4f7c64ec0e57)]
224
+ - style: css polishments [kreafox - [`5adaadb`](https://github.com/eea/volto-chatbot/commit/5adaadbbd7f9fdacde8a32f436c88928f74eaac5)]
225
+ - style: Automated code fix [eea-jenkins - [`2f97062`](https://github.com/eea/volto-chatbot/commit/2f97062ab115b7ac8e9b227999c569786d71e0a9)]
226
+ - style: improve sources tab listing [kreafox - [`3cc3314`](https://github.com/eea/volto-chatbot/commit/3cc3314df6d1b5e4ef039fb481777013aa93773e)]
227
+ - style: Automated code fix [eea-jenkins - [`3d6d855`](https://github.com/eea/volto-chatbot/commit/3d6d8551dc5fec34b5037bad596c961b1c9ba2b4)]
228
+
229
+ #### :hammer_and_wrench: Others
230
+
231
+ - Bump version [kreafox - [`16e8af8`](https://github.com/eea/volto-chatbot/commit/16e8af8a0f3bc7f2613a9e9aaf9a7d5e329e3804)]
232
+ - test: increase code coverage [kreafox - [`9cae7c4`](https://github.com/eea/volto-chatbot/commit/9cae7c4862dd15c4cbb7e1a98531056dd02db957)]
233
+ - test: update snapshot [kreafox - [`81c4166`](https://github.com/eea/volto-chatbot/commit/81c4166096d6a517c15c0a9b8b2c066c572e1968)]
234
+ ### [0.3.2](https://github.com/eea/volto-chatbot/compare/0.3.1...0.3.2) - 11 September 2025
235
+
236
+ ### [0.3.1](https://github.com/eea/volto-chatbot/compare/0.3.0...0.3.1) - 7 August 2025
237
+
238
+ #### :house: Documentation changes
239
+
240
+ - docs: update README.md [kreafox - [`10c4124`](https://github.com/eea/volto-chatbot/commit/10c41244f3cadca10f324c0aa6f8870e167b938b)]
241
+
242
+ #### :hammer_and_wrench: Others
243
+
244
+ - Add HALLOUMI_DEBUG [Tiberiu Ichim - [`255976f`](https://github.com/eea/volto-chatbot/commit/255976f42ce808326ee3f88a024816d15cb1c17f)]
245
+ - Add console.log for halloumi response [Tiberiu Ichim - [`bd9ffcf`](https://github.com/eea/volto-chatbot/commit/bd9ffcfc200b111fd23593d5c07ad9311f100b61)]
246
+ ### [0.3.0](https://github.com/eea/volto-chatbot/compare/0.2.5...0.3.0) - 6 August 2025
247
+
248
+ #### :nail_care: Enhancements
249
+
250
+ - change: update text for clarity [kreafox - [`d600f79`](https://github.com/eea/volto-chatbot/commit/d600f793557e138312e7aa2e97b8d0a981c743f6)]
251
+ - refactor: move user actions toolbar to a separate component [kreafox - [`fa68a38`](https://github.com/eea/volto-chatbot/commit/fa68a388884da7a07262107fec9a6e1f9168259c)]
252
+ - change: refactor, small fixes [kreafox - [`64b72d1`](https://github.com/eea/volto-chatbot/commit/64b72d16a117d7f127b1fade5cdc4ac5830b1209)]
253
+ - change: add fact-check button when fact-check toggle is off - refs #290007 [kreafox - [`2c10e37`](https://github.com/eea/volto-chatbot/commit/2c10e37ac9c089feead5b33a7f8998a133e2eefe)]
254
+ - change: add option to set the quality check toggle default state - refs #290007 [kreafox - [`75bdf86`](https://github.com/eea/volto-chatbot/commit/75bdf86f08634e8a635983dc0e83a99df76f2307)]
255
+
256
+ #### :house: Internal changes
257
+
258
+ - style: Automated code fix [eea-jenkins - [`451ef0f`](https://github.com/eea/volto-chatbot/commit/451ef0f8a0b89a1248b91d40197bb34ba3c29642)]
259
+ - style: Automated code fix [eea-jenkins - [`d3956dc`](https://github.com/eea/volto-chatbot/commit/d3956dce0115602e41faf90f0a0f402a469c1be5)]
260
+ - style: improvements [kreafox - [`52f812d`](https://github.com/eea/volto-chatbot/commit/52f812d22cd8a49c629c947bac09dd99a0c0364a)]
261
+ - style: Automated code fix [eea-jenkins - [`306c1ae`](https://github.com/eea/volto-chatbot/commit/306c1ae079f96578c53d29b8efb71778cab35ab7)]
262
+
263
+ #### :hammer_and_wrench: Others
264
+
265
+ - Bump version [kreafox - [`659265a`](https://github.com/eea/volto-chatbot/commit/659265ab68e5f95318ddfc562ff9da0e54350ae3)]
266
+ - test: increase coverage [kreafox - [`65c323d`](https://github.com/eea/volto-chatbot/commit/65c323d6bb7f12252ad4ab81885ae8f39ea383ad)]
267
+ - test: increase coverage [kreafox - [`3356ed8`](https://github.com/eea/volto-chatbot/commit/3356ed8245aa71d77937e8873e93eed67d6ffb15)]
268
+ ### [0.2.5](https://github.com/eea/volto-chatbot/compare/0.2.4...0.2.5) - 4 August 2025
269
+
270
+ #### :hammer_and_wrench: Others
271
+
272
+ - Fix volto-matomo pin [alin - [`34387b2`](https://github.com/eea/volto-chatbot/commit/34387b2b645157e3e0fd52cd79b73f8f4cf9e05e)]
273
+ ### [0.2.4](https://github.com/eea/volto-chatbot/compare/0.2.3...0.2.4) - 4 August 2025
274
+
275
+ #### :bug: Bug Fixes
276
+
277
+ - fix: set default value of enableMatomoTracking to true [kreafox - [`9aae310`](https://github.com/eea/volto-chatbot/commit/9aae3103e35555f375a8d0afa35712aba561e07f)]
278
+
279
+ #### :house: Internal changes
280
+
281
+ - style: Automated code fix [eea-jenkins - [`0403027`](https://github.com/eea/volto-chatbot/commit/0403027706cf88c2c45a4c7f859343c2d3fc9eb1)]
282
+ - style: improve sources on mobile [kreafox - [`119fe38`](https://github.com/eea/volto-chatbot/commit/119fe3884043298728dc07f0dc28ef5b3dc1656f)]
283
+
284
+ #### :hammer_and_wrench: Others
285
+
286
+ - test: update snapshot [kreafox - [`dde97c3`](https://github.com/eea/volto-chatbot/commit/dde97c31904f23a40aa5a1d9c17cf888430b4986)]
287
+ ### [0.2.3](https://github.com/eea/volto-chatbot/compare/0.2.2...0.2.3) - 1 August 2025
288
+
289
+ #### :bug: Bug Fixes
290
+
291
+ - fix: remove link icon from doc source + cleanup [kreafox - [`af0d3bd`](https://github.com/eea/volto-chatbot/commit/af0d3bd814795749b1af493bec00012093788fd5)]
292
+
293
+ #### :nail_care: Enhancements
294
+
295
+ - change: set default value of enableMatomoTracking to true [kreafox - [`7d7390f`](https://github.com/eea/volto-chatbot/commit/7d7390f35e69a719e38b075ab236ae159f9afab6)]
296
+ - change: add event name for Matomo event tracking - refs #289291 [kreafox - [`f67e33c`](https://github.com/eea/volto-chatbot/commit/f67e33cb5d6e28fc1ef5cc715727db0912fcb55f)]
297
+ - change: improve Matomo event labels for clarity - refs #289291 [kreafox - [`9415067`](https://github.com/eea/volto-chatbot/commit/94150677824992aab0b826e38389f37bc1871f88)]
298
+ - change: improve Matomo event labels for clarity - refs #289291 [kreafox - [`0cbb595`](https://github.com/eea/volto-chatbot/commit/0cbb595c3c5143fae5da0c648d5d02766856104c)]
299
+ - change: include assistant in Matomo event category - refs #289291 [kreafox - [`b21bc94`](https://github.com/eea/volto-chatbot/commit/b21bc940157c970569f5f60e045e2584571fdf3d)]
300
+
301
+ #### :house: Internal changes
302
+
303
+ - style: Automated code fix [eea-jenkins - [`1f5a63c`](https://github.com/eea/volto-chatbot/commit/1f5a63c5c09616f491c189ea8aab1c3e4ffb090a)]
304
+ - style: small CSS fix [kreafox - [`8cbb88d`](https://github.com/eea/volto-chatbot/commit/8cbb88deb2879195be5f2aef43acb82519f6f57a)]
305
+ - style: Automated code fix [eea-jenkins - [`48449c7`](https://github.com/eea/volto-chatbot/commit/48449c7882631e2cc91c8ef4f2f2f07ba5839804)]
306
+
307
+ #### :hammer_and_wrench: Others
308
+
309
+ - Update package.json [kreafox - [`cdd89c8`](https://github.com/eea/volto-chatbot/commit/cdd89c87fe1c1fc0eb736d76cfa410a410d5a7c9)]
310
+ ### [0.2.2](https://github.com/eea/volto-chatbot/compare/0.2.1...0.2.2) - 22 July 2025
311
+
312
+ #### :bug: Bug Fixes
313
+
314
+ - fix: claim toggle color [kreafox - [`db468a8`](https://github.com/eea/volto-chatbot/commit/db468a89ef23143e4bab958a12b7bfcae7522219)]
315
+ - fix: set id on Checkbox for correct association [kreafox - [`1db5408`](https://github.com/eea/volto-chatbot/commit/1db5408e84d5cedfe29339f070510b8d73b33661)]
316
+
317
+ #### :nail_care: Enhancements
318
+
319
+ - change: add popup message on claim toggle - refs #290007 [kreafox - [`709845d`](https://github.com/eea/volto-chatbot/commit/709845dca3ea8557df9c7b928c37c4edd9ba9eae)]
320
+
321
+ #### :house: Internal changes
322
+
323
+ - chore: code cleanup [kreafox - [`a0f17c3`](https://github.com/eea/volto-chatbot/commit/a0f17c36af7799da4ccbf482190d19bf9f14b0c9)]
324
+ - style: Automated code fix [eea-jenkins - [`970ba22`](https://github.com/eea/volto-chatbot/commit/970ba22ce1ee97cee7ad34dd1ad9357d8b7b0072)]
325
+ - style: Automated code fix [eea-jenkins - [`29b12a4`](https://github.com/eea/volto-chatbot/commit/29b12a47b807195b7856a917481d068bbe352fff)]
326
+ - style: css improvements [kreafox - [`b11f1bd`](https://github.com/eea/volto-chatbot/commit/b11f1bd547131fae357d799cff6380183f5337c5)]
327
+ - style: Automated code fix [eea-jenkins - [`08a5e6e`](https://github.com/eea/volto-chatbot/commit/08a5e6e25daddf4578ebdc662c606cc7203df178)]
328
+
329
+ ### [0.2.1](https://github.com/eea/volto-chatbot/compare/0.2.0...0.2.1) - 11 July 2025
330
+
331
+ #### :bug: Bug Fixes
332
+
333
+ - fix: citation position (WIP) [kreafox - [`21db6c3`](https://github.com/eea/volto-chatbot/commit/21db6c3b5f70b0750e446852beb7024f025c1f01)]
334
+
335
+ #### :house: Internal changes
336
+
337
+ - style: Automated code fix [eea-jenkins - [`73d8ce4`](https://github.com/eea/volto-chatbot/commit/73d8ce46c8d146f88f77240b318308736e7d1f3b)]
338
+ - style: css improvements [kreafox - [`4f2f56d`](https://github.com/eea/volto-chatbot/commit/4f2f56d8340e28eb2645664803fdf15e476da4aa)]
339
+ - style: Automated code fix [eea-jenkins - [`5b12114`](https://github.com/eea/volto-chatbot/commit/5b121143499e1d6e6235109892ae0af9fc07bd67)]
340
+ - chore: code cleanup [kreafox - [`e6ec9b9`](https://github.com/eea/volto-chatbot/commit/e6ec9b9d399460c5f56ee9735bcab825fb04f5fe)]
341
+ - style: Automated code fix [eea-jenkins - [`2acade9`](https://github.com/eea/volto-chatbot/commit/2acade9ccf9e17441b2fef3495bf404c3cfac3d6)]
342
+
343
+ #### :hammer_and_wrench: Others
344
+
345
+ - Remove console log [Tiberiu Ichim - [`5272569`](https://github.com/eea/volto-chatbot/commit/5272569ff76fc7394d4138d31300650fed94980d)]
346
+ - Fix cited sources with halloumi context [Tiberiu Ichim - [`bbd25aa`](https://github.com/eea/volto-chatbot/commit/bbd25aab7ab3390aad2a84f2cb7a251d5bfaa2ab)]
347
+ ### [0.2.0](https://github.com/eea/volto-chatbot/compare/0.1.22...0.2.0) - 10 July 2025
348
+
349
+ #### :nail_care: Enhancements
350
+
351
+ - change: add haloumi context with document metadata - refs #289732 [kreafox - [`7ad3a71`](https://github.com/eea/volto-chatbot/commit/7ad3a71f6014e964eb5cedb5102a38b7a241e6b1)]
352
+ - change: show title in claim pop-up [kreafox - [`9835009`](https://github.com/eea/volto-chatbot/commit/9835009350a0f072b917dad5f58533774112b487)]
353
+ - change: increase number of visible citations [kreafox - [`46c53bb`](https://github.com/eea/volto-chatbot/commit/46c53bbc55245b71843931e82f948d3776948fac)]
354
+
355
+ #### :house: Internal changes
356
+
357
+ - style: css polishments [kreafox - [`599a9e1`](https://github.com/eea/volto-chatbot/commit/599a9e1283e80c07e76463aa0186b1b906feca93)]
358
+ - chore: cleanup Button [kreafox - [`7b430a9`](https://github.com/eea/volto-chatbot/commit/7b430a92c503e64de38be9db9b4f46a09950bb7e)]
359
+ - style: Automated code fix [eea-jenkins - [`2e071ee`](https://github.com/eea/volto-chatbot/commit/2e071ee81733b02adcd926469ff61b8a55abdd01)]
360
+ - style: improvements, cleanup [kreafox - [`24a71eb`](https://github.com/eea/volto-chatbot/commit/24a71ebe7a1b0c160df1b081559f600ffa4642de)]
361
+ - style: fix modal menu [kreafox - [`19d64ef`](https://github.com/eea/volto-chatbot/commit/19d64ef4469cd2fb7d047532070cd7a4ed81d22f)]
362
+ - style: Automated code fix [eea-jenkins - [`7f685c4`](https://github.com/eea/volto-chatbot/commit/7f685c4daedd5e2b69a384c67c3d941cb024411e)]
363
+ - style: CSS fixes [kreafox - [`12206f7`](https://github.com/eea/volto-chatbot/commit/12206f79630722f7f20872a11827861801f6935d)]
364
+ - style: Automated code fix [eea-jenkins - [`24a416a`](https://github.com/eea/volto-chatbot/commit/24a416a07538e80bdb93b69db9b81ee064579670)]
365
+ - style: CSS fixes [kreafox - [`9392792`](https://github.com/eea/volto-chatbot/commit/939279261e854f130988afa5da900771d5fd118b)]
366
+ - style: Automated code fix [eea-jenkins - [`4734e7f`](https://github.com/eea/volto-chatbot/commit/4734e7f1f3785755acaf4682d3e508a090dde2c9)]
367
+ - style: improve claim verification pop-up - refs #289260 [kreafox - [`6f01d8e`](https://github.com/eea/volto-chatbot/commit/6f01d8e9e9946ef9d51994280facf4efd7d584ba)]
368
+ - style: Automated code fix [eea-jenkins - [`0a0cdc5`](https://github.com/eea/volto-chatbot/commit/0a0cdc5df184e089284261c2775ff0e1a77344b0)]
369
+ - style: improve claim verification pop-up - refs #289260 [kreafox - [`de2cbcb`](https://github.com/eea/volto-chatbot/commit/de2cbcb27c02e1511ecbed886be44bd67c8fb189)]
370
+ - style: Automated code fix [eea-jenkins - [`eaa57bc`](https://github.com/eea/volto-chatbot/commit/eaa57bccad26e7e48f32d545908634c407d73575)]
371
+ - style: Automated code fix [eea-jenkins - [`fe8f21f`](https://github.com/eea/volto-chatbot/commit/fe8f21f10ab39c12be86ec03ea33849d912f01a9)]
372
+ - chore: remove unused import [kreafox - [`029ab3b`](https://github.com/eea/volto-chatbot/commit/029ab3bdc73cfa19647d92ba0a8e9c3a1d70b092)]
373
+ - style: Automated code fix [eea-jenkins - [`227ece8`](https://github.com/eea/volto-chatbot/commit/227ece882f875082bce3079e266d4e89a42bd7dd)]
374
+ - style: improve citations in claim verification pop-up - refs #289260 [kreafox - [`6d589bd`](https://github.com/eea/volto-chatbot/commit/6d589bd6238db9821384da5d1648d063d5d3f82f)]
375
+ - style: Automated code fix [eea-jenkins - [`4c6b516`](https://github.com/eea/volto-chatbot/commit/4c6b51615b3dcc8d49078dbcda90b2b9ee7b1b67)]
376
+ - style: improve claim verification pop-up (WIP) - refs #289260 [kreafox - [`db3c8f6`](https://github.com/eea/volto-chatbot/commit/db3c8f626a449acb83e581144f2c649fbac461e9)]
377
+ - style: Automated code fix [eea-jenkins - [`66f30ee`](https://github.com/eea/volto-chatbot/commit/66f30ee26201e25f1f12f7483e49f4dea0f7411c)]
378
+ - chore: better claims error handling [kreafox - [`57ef9a0`](https://github.com/eea/volto-chatbot/commit/57ef9a0e7dcd2aaac9b2b9665a680e4a959f5d9e)]
379
+
380
+ #### :hammer_and_wrench: Others
381
+
382
+ - test: update snapshot [kreafox - [`3013c16`](https://github.com/eea/volto-chatbot/commit/3013c16cc8a7d5db4273bf977c388d4d4c02263e)]
383
+ - test: increase code coverage [kreafox - [`1d0fc2f`](https://github.com/eea/volto-chatbot/commit/1d0fc2f575a9636aca08f6ba0c41b4bddb58211f)]
384
+ - Bump version [kreafox - [`e93d62e`](https://github.com/eea/volto-chatbot/commit/e93d62e6dd14f32af7993e55bb683357d7a8f19b)]
385
+ - WIP [Tiberiu Ichim - [`0fec402`](https://github.com/eea/volto-chatbot/commit/0fec40284ac094d6cd250ef8f5c68c88ea6f4efa)]
386
+ - test: update snapshot [kreafox - [`8aeca66`](https://github.com/eea/volto-chatbot/commit/8aeca66e0b14e3134404123ecdfe30fd693bc397)]
387
+ ### [0.1.22](https://github.com/eea/volto-chatbot/compare/0.1.21...0.1.22) - 2 July 2025
388
+
389
+ #### :hammer_and_wrench: Others
390
+
391
+ - Set default for starter prompt position [Tiberiu Ichim - [`80e5f1a`](https://github.com/eea/volto-chatbot/commit/80e5f1af021339d281cad40f7acb57e7de0c87b7)]
392
+ ### [0.1.21](https://github.com/eea/volto-chatbot/compare/0.1.20...0.1.21) - 2 July 2025
393
+
394
+ #### :rocket: New Features
395
+
396
+ - feat: add configurable starter messages - refs #288466 [kreafox - [`c784cb0`](https://github.com/eea/volto-chatbot/commit/c784cb010ba6acd4c1e3dc496198f4c38cf3f0b8)]
397
+
398
+ #### :nail_care: Enhancements
399
+
400
+ - change: improve custom starter messages - refs #288466 [kreafox - [`2e7e728`](https://github.com/eea/volto-chatbot/commit/2e7e7281b8c8abe985c7645bb0014842d9c86cb1)]
401
+ - change: small improvements [kreafox - [`a63a9cf`](https://github.com/eea/volto-chatbot/commit/a63a9cfc8ebab66446c16e550b55528b6a4ef98f)]
402
+
403
+ #### :house: Internal changes
404
+
405
+ - style: Automated code fix [eea-jenkins - [`356f9af`](https://github.com/eea/volto-chatbot/commit/356f9af84fa497c9f529ff2e2289f7b95457818f)]
406
+ - style: Automated code fix [eea-jenkins - [`ad32000`](https://github.com/eea/volto-chatbot/commit/ad320000abaa565995cb810a552049c37a4c1a84)]
407
+ - style: Automated code fix [eea-jenkins - [`561c10f`](https://github.com/eea/volto-chatbot/commit/561c10f732c55eda8df5212175cfaa8ade2e88d1)]
408
+ - style: Automated code fix [eea-jenkins - [`585ece3`](https://github.com/eea/volto-chatbot/commit/585ece351e7858e2739aee0cf92801f99c1c8bec)]
409
+ - style: CSS improvements [kreafox - [`437038c`](https://github.com/eea/volto-chatbot/commit/437038cd414b4bb301740cb557db50788baff8c9)]
410
+ - style: Automated code fix [eea-jenkins - [`8c7e759`](https://github.com/eea/volto-chatbot/commit/8c7e759f236006d93047983676e8f7f71a09f78b)]
411
+ - style: Automated code fix [eea-jenkins - [`258fdc2`](https://github.com/eea/volto-chatbot/commit/258fdc2115ea7768d8666029ffb5350f35c0f1ec)]
412
+ - style: Automated code fix [eea-jenkins - [`b5f576b`](https://github.com/eea/volto-chatbot/commit/b5f576bdc2306db793a36627c4e9018789bf6c02)]
413
+
414
+ #### :hammer_and_wrench: Others
415
+
416
+ - Clear eslint [Tiberiu Ichim - [`0ba9bcb`](https://github.com/eea/volto-chatbot/commit/0ba9bcb6f8cd8eb277414112b6c1b410a7c86cc9)]
417
+ - test: update snapshot [kreafox - [`d6b5521`](https://github.com/eea/volto-chatbot/commit/d6b552194f0175a612e26722d249cc78444edf23)]
418
+ - Added compatibility [Tiberiu Ichim - [`9e41ee1`](https://github.com/eea/volto-chatbot/commit/9e41ee1aae84327cfc6713c4bb4dfa707aca4ffa)]
419
+ - cleanup [Zoltan Szabo - [`93871fa`](https://github.com/eea/volto-chatbot/commit/93871fa57552e8b7292ffefb164a596b76bb4ec2)]
420
+ - cleanup [Zoltan Szabo - [`080d09a`](https://github.com/eea/volto-chatbot/commit/080d09a84ad2b984e62197c0b975594903f460f4)]
421
+ - cleanup [Zoltan Szabo - [`bdad404`](https://github.com/eea/volto-chatbot/commit/bdad404b4e2483200c4cbefb8ef05b8f92c16128)]
422
+ - test: update snaphot [kreafox - [`1630d90`](https://github.com/eea/volto-chatbot/commit/1630d90a5c06267b33764f0f735d678a715906d1)]
423
+ - test: update snapshot [kreafox - [`3b7ce90`](https://github.com/eea/volto-chatbot/commit/3b7ce90bda9393bc7feea263f60236412388971f)]
424
+ - added possibility to use api_keys [Zoltan Szabo - [`c81e73e`](https://github.com/eea/volto-chatbot/commit/c81e73e88623ac4485cbb1af3c6f16946f5f5afe)]
425
+ - fix bug [Dylan Jay - [`0e5d932`](https://github.com/eea/volto-chatbot/commit/0e5d93216ef0a9ab16611d834412cf71e95950cd)]
426
+ - fix for loop in message map [Dylan Jay - [`882c694`](https://github.com/eea/volto-chatbot/commit/882c694eed1ca97e78d4e896b5d58f2420583cd9)]
427
+ - fix showing citations [Dylan Jay - [`e89cfc8`](https://github.com/eea/volto-chatbot/commit/e89cfc82d235c00b63b66ecac2ab7c02c8028f9f)]
428
+ ### [0.1.20](https://github.com/eea/volto-chatbot/compare/0.1.19...0.1.20) - 26 May 2025
429
+
430
+ #### :house: Internal changes
431
+
432
+ - style: Automated code fix [eea-jenkins - [`c15ac93`](https://github.com/eea/volto-chatbot/commit/c15ac93446223990be1d947aa2d1d8ab33e80b6b)]
433
+ - style: css adjusments [kreafox - [`dfc68a6`](https://github.com/eea/volto-chatbot/commit/dfc68a67241676e7a1e475c265816006e5b48fbd)]
434
+
435
+ ### [0.1.19](https://github.com/eea/volto-chatbot/compare/0.1.18...0.1.19) - 20 May 2025
436
+
437
+ #### :house: Internal changes
438
+
439
+ - style: Automated code fix [eea-jenkins - [`aca0b6c`](https://github.com/eea/volto-chatbot/commit/aca0b6ca5bc58961b0f8d2f4e320b3618729273b)]
440
+
441
+ #### :hammer_and_wrench: Others
442
+
443
+ - Messages for verify ai claims [Tiberiu Ichim - [`a46569c`](https://github.com/eea/volto-chatbot/commit/a46569c154510fe43f949cf186df495c613a3956)]
444
+ - Rearange component [Tiberiu Ichim - [`00e8fb4`](https://github.com/eea/volto-chatbot/commit/00e8fb49392ecb376ec3254cba5dc9dedaee638b)]
445
+ - Add logging [Tiberiu Ichim - [`c7c0aad`](https://github.com/eea/volto-chatbot/commit/c7c0aadff559ea1958ab0e355ab4839d270927ab)]
446
+ - Fix label [Tiberiu Ichim - [`fa4941e`](https://github.com/eea/volto-chatbot/commit/fa4941ece6c6176433b0feb166a24e9d9954a829)]
447
+ - Tweak to total failure message [Tiberiu Ichim - [`779559b`](https://github.com/eea/volto-chatbot/commit/779559be79ab8d2210575f4cec10c82ba77735a3)]
448
+ ### [0.1.18](https://github.com/eea/volto-chatbot/compare/0.1.17...0.1.18) - 14 May 2025
449
+
450
+ #### :house: Internal changes
451
+
452
+ - style: Automated code fix [eea-jenkins - [`f553385`](https://github.com/eea/volto-chatbot/commit/f553385a8ee413b72193dad89729c99b9154ec3e)]
453
+
454
+ #### :hammer_and_wrench: Others
455
+
456
+ - improve messaging [Tiberiu Ichim - [`95e7a69`](https://github.com/eea/volto-chatbot/commit/95e7a69d7caf9160fbd8ec4aa5e4a7576b304096)]
457
+ - improve messaging [Tiberiu Ichim - [`93019fd`](https://github.com/eea/volto-chatbot/commit/93019fdd1a959b7082bc9ee1bee579120a483513)]
458
+ ### [0.1.17](https://github.com/eea/volto-chatbot/compare/0.1.16...0.1.17) - 13 May 2025
459
+
460
+ #### :bug: Bug Fixes
461
+
462
+ - fix: update heading [kreafox - [`3355656`](https://github.com/eea/volto-chatbot/commit/33556562a6ed92147db4d0ae9ad722636986f223)]
463
+ - fix: scroll to citation behavior [kreafox - [`8be85eb`](https://github.com/eea/volto-chatbot/commit/8be85ebd770e95355fb88d631fe1fbf05bcd2fc4)]
464
+ - fix: double loader [kreafox - [`ec26459`](https://github.com/eea/volto-chatbot/commit/ec26459f60ed5b4119ac200f550e03f3d56d5d2e)]
465
+ - fix: loader display [kreafox - [`4f30963`](https://github.com/eea/volto-chatbot/commit/4f30963ab3b33137bf77a35852f4db9f65e27091)]
466
+ - fix: remove unused import [kreafox - [`6ecf9c9`](https://github.com/eea/volto-chatbot/commit/6ecf9c9b3a70295674046d6f16817a117fb7b1f6)]
467
+ - fix: missing icons [kreafox - [`3a08ed6`](https://github.com/eea/volto-chatbot/commit/3a08ed6353272ae97a97ee776e3696807fcf3674)]
468
+ - fix: remove unused import [kreafox - [`a447c9a`](https://github.com/eea/volto-chatbot/commit/a447c9a0028b342b7e718887e8cfaf85c300ca31)]
469
+ - fix: eslint warnings [kreafox - [`b027a00`](https://github.com/eea/volto-chatbot/commit/b027a004ac2fd34e308034cbb90cd1a9831d51f0)]
470
+
471
+ #### :house: Internal changes
472
+
473
+ - style: Automated code fix [eea-jenkins - [`add7dc2`](https://github.com/eea/volto-chatbot/commit/add7dc25e723743c9ae994f15d6c1d08f99524d0)]
474
+ - style: improvements [kreafox - [`1c585f1`](https://github.com/eea/volto-chatbot/commit/1c585f1420deef4289366b1e47527c0618aac394)]
475
+ - style: improvements [kreafox - [`3e884e5`](https://github.com/eea/volto-chatbot/commit/3e884e556e046a2d7870d47a88c46b98be378ad5)]
476
+ - style: Automated code fix [eea-jenkins - [`27539cc`](https://github.com/eea/volto-chatbot/commit/27539cc938497763cc071ae2350ee0e0c8d1a855)]
477
+ - style: improve citation buttons in modal [kreafox - [`cece7f8`](https://github.com/eea/volto-chatbot/commit/cece7f87f14ea970a760516cd8a7d17be56380a8)]
478
+ - style: more fixing [kreafox - [`0846f18`](https://github.com/eea/volto-chatbot/commit/0846f1811e4c3c36be1b18cef03f7ad04f2c0cfc)]
479
+ - style: Automated code fix [eea-jenkins - [`5d573c5`](https://github.com/eea/volto-chatbot/commit/5d573c591bdb41c229dc3ea6d8e57cc28a76cb43)]
480
+ - style: more styling improvements [kreafox - [`944fcd7`](https://github.com/eea/volto-chatbot/commit/944fcd7d12adf56e3c6414baa7cea92e7cf34e2f)]
481
+ - style: Automated code fix [eea-jenkins - [`2899270`](https://github.com/eea/volto-chatbot/commit/28992709151a0767d0865494068a2808fe9fcafc)]
482
+ - style: Automated code fix [eea-jenkins - [`a4362fa`](https://github.com/eea/volto-chatbot/commit/a4362fad27c2b13d06dcc4eb474bafabc9f84ba5)]
483
+ - style: CSS improvements [kreafox - [`d8dd421`](https://github.com/eea/volto-chatbot/commit/d8dd4218d9f924e93e36dd68adaa62b80ff34bab)]
484
+ - style: Automated code fix [eea-jenkins - [`e59b393`](https://github.com/eea/volto-chatbot/commit/e59b3932bb841c3bcc512b444c9379acc52a5188)]
485
+ - style: Automated code fix [eea-jenkins - [`5edd169`](https://github.com/eea/volto-chatbot/commit/5edd1692e73dcf0c884fd2f35c9028a9a9262a8c)]
486
+ - style: Automated code fix [eea-jenkins - [`e34d8dc`](https://github.com/eea/volto-chatbot/commit/e34d8dcfbed8710394e7eaccc37fe6461383c8e1)]
487
+ - style: Automated code fix [eea-jenkins - [`21c6b23`](https://github.com/eea/volto-chatbot/commit/21c6b23fdc198a31ab9a2a1caa9e453886b62f99)]
488
+
489
+ #### :hammer_and_wrench: Others
490
+
491
+ - test: mock injectLazyLibs [kreafox - [`fa9882d`](https://github.com/eea/volto-chatbot/commit/fa9882d8624bc8e8ddec66eba18697ca3a34bb97)]
492
+ - Offload luxon [Tiberiu Ichim - [`3a21831`](https://github.com/eea/volto-chatbot/commit/3a2183189f25b887b2f1c84c571940770922f2a5)]
493
+ - WIP on haloumi [Tiberiu Ichim - [`6196565`](https://github.com/eea/volto-chatbot/commit/61965657ba59fe59047445bb8cad85f337400180)]
494
+ - WIP on haloumi [Tiberiu Ichim - [`d95b8e6`](https://github.com/eea/volto-chatbot/commit/d95b8e6704e75e9cfacfd624e60bcb75ace01c13)]
495
+ - WIP on haloumi [Tiberiu Ichim - [`7017eee`](https://github.com/eea/volto-chatbot/commit/7017eee9ddcbfaef94246af22bc09d78a028bf17)]
496
+ - WIP on haloumi [Tiberiu Ichim - [`6f1d2c8`](https://github.com/eea/volto-chatbot/commit/6f1d2c8b0359a6626ece3df0f14c96b663b72deb)]
497
+ - WIP on haloumi [Tiberiu Ichim - [`aefd5aa`](https://github.com/eea/volto-chatbot/commit/aefd5aa92611b81fd17c72c71f3256ae9ec24258)]
498
+ - WIP on haloumi [Tiberiu Ichim - [`1160800`](https://github.com/eea/volto-chatbot/commit/11608009ab5b12c7de2a4dd9cd8772eca43ed4c5)]
499
+ - WIP on haloumi [Tiberiu Ichim - [`22a8152`](https://github.com/eea/volto-chatbot/commit/22a8152bff97629b96f503788dc2792d6b420802)]
500
+ - WIP on haloumi [Tiberiu Ichim - [`6c3469b`](https://github.com/eea/volto-chatbot/commit/6c3469b8bae30778aefa987db8f5ab70661d75d1)]
501
+ - Fail on empty sources [Tiberiu Ichim - [`f824542`](https://github.com/eea/volto-chatbot/commit/f824542ae8717ce1147fffc240b4d9205537f4e7)]
502
+ - Use only citations [Tiberiu Ichim - [`b75e007`](https://github.com/eea/volto-chatbot/commit/b75e007b6ea7b07be3cba1175449f4c96e166165)]
503
+ - Remove unneeded import [Tiberiu Ichim - [`080acae`](https://github.com/eea/volto-chatbot/commit/080acae469ceb9c4c798aca465c73870664a9ee4)]
504
+ - Fix label [Tiberiu Ichim - [`0867cf6`](https://github.com/eea/volto-chatbot/commit/0867cf6315aa07864a47610754e4811234777fe8)]
505
+ - Improvements to UI [Tiberiu Ichim - [`f7eb328`](https://github.com/eea/volto-chatbot/commit/f7eb3284ae768af27f6e583cd1eae42f0d80ec33)]
506
+ - Avoid problem [Tiberiu Ichim - [`07f56f1`](https://github.com/eea/volto-chatbot/commit/07f56f1fc5572d4d458a73ffdb66dd9c9c163cc4)]
507
+ - Code cleanup [Tiberiu Ichim - [`5e74f60`](https://github.com/eea/volto-chatbot/commit/5e74f60b0a49cf58b9a0af04b1b108d84e70a14e)]
508
+ - Send all documents as context [Tiberiu Ichim - [`17a86b7`](https://github.com/eea/volto-chatbot/commit/17a86b7e0090fad9c0516ea6ad5c1bb1e0696186)]
509
+ - Avoid crash [Tiberiu Ichim - [`db3cece`](https://github.com/eea/volto-chatbot/commit/db3cece613b16a2aba38dac39292f915e447cec1)]
510
+ - Improvements [Tiberiu Ichim - [`36799bd`](https://github.com/eea/volto-chatbot/commit/36799bd6bff609e696bbb33cb94165593e9d2895)]
511
+ - Don't crash in middleware [Tiberiu Ichim - [`0f2c4a5`](https://github.com/eea/volto-chatbot/commit/0f2c4a586a635c3b6914e46b76c75813ff6e0134)]
512
+ - Hide button [Tiberiu Ichim - [`5ec4de4`](https://github.com/eea/volto-chatbot/commit/5ec4de427e0552b5cdbf96faa871ee05dab00751)]
513
+ - Cleanup [Tiberiu Ichim - [`270cf3b`](https://github.com/eea/volto-chatbot/commit/270cf3b7466885ac0acc88a512747837ce61cf5e)]
514
+ - Cleanup [Tiberiu Ichim - [`5be510d`](https://github.com/eea/volto-chatbot/commit/5be510d1008ac1608efb42ad722ea009c9194a34)]
515
+ - Fixes and changes [Tiberiu Ichim - [`cab9aa0`](https://github.com/eea/volto-chatbot/commit/cab9aa0842ec7d9b39b1fd97e4fd1e445a00e3f6)]
516
+ - test: add tests to increase code coverage [kreafox - [`a729fb0`](https://github.com/eea/volto-chatbot/commit/a729fb042a64e49579a92750fdf1592295edc287)]
517
+ - test: add tests to increase code coverage [kreafox - [`90d8ace`](https://github.com/eea/volto-chatbot/commit/90d8acef4537e5025641b2cf198715c433e96179)]
518
+ - test: add tests to increase code coverage [kreafox - [`3a0c7be`](https://github.com/eea/volto-chatbot/commit/3a0c7bee41c2ee34577aa92a6d7b88aedd4e52d3)]
519
+ - Add readme [Tiberiu Ichim - [`3b7b632`](https://github.com/eea/volto-chatbot/commit/3b7b632b6feba3fb1fd321bef085a3e97ee833a1)]
520
+ - Add WIP hallomi [Tiberiu Ichim - [`04160c8`](https://github.com/eea/volto-chatbot/commit/04160c8deda6f6e36e0b46b87a0acfdf204b35b3)]
521
+ - Add WIP hallomi [Tiberiu Ichim - [`4ca60b9`](https://github.com/eea/volto-chatbot/commit/4ca60b930e4ee83a02f641c207d2409030e07947)]
522
+ - Add WIP hallomi [Tiberiu Ichim - [`082afab`](https://github.com/eea/volto-chatbot/commit/082afabaffd5795b300e607a8b1cee76645aeff3)]
523
+ - Add WIP hallomi [Tiberiu Ichim - [`48386de`](https://github.com/eea/volto-chatbot/commit/48386deef437e8f025848e58852040a47ea172f2)]
524
+ - Add WIP hallomi [Tiberiu Ichim - [`2b00b5c`](https://github.com/eea/volto-chatbot/commit/2b00b5ca0725b2557f00a8c422d4b25a8d6c285a)]
525
+ - Add WIP hallomi [Tiberiu Ichim - [`4fa3999`](https://github.com/eea/volto-chatbot/commit/4fa3999af961d68b10e68a1e61de2b0c11a5bbd3)]
526
+ - Add WIP hallomi [Tiberiu Ichim - [`2046755`](https://github.com/eea/volto-chatbot/commit/204675595ecb5e9363519e6b7c915a9585430a42)]
527
+ - Add WIP hallomi [Tiberiu Ichim - [`e9b63e3`](https://github.com/eea/volto-chatbot/commit/e9b63e3c74eea8f69daab51e99aefbeddfc9cf33)]
528
+ - Add WIP hallomi [Tiberiu Ichim - [`b1223c5`](https://github.com/eea/volto-chatbot/commit/b1223c5350a4e82d32162c5869bf08c09a59fa6b)]
529
+ - Add WIP hallomi [Tiberiu Ichim - [`66c25e6`](https://github.com/eea/volto-chatbot/commit/66c25e64c6959729cb018964eed60c67b16a6592)]
530
+ - Add WIP hallomi [Tiberiu Ichim - [`7f6ccaf`](https://github.com/eea/volto-chatbot/commit/7f6ccaf4f27ca6ca8cf1d9ecfd4be86b06af58bb)]
531
+ - Add WIP hallomi [Tiberiu Ichim - [`bc14834`](https://github.com/eea/volto-chatbot/commit/bc14834313a17054b31a3e8e61de156e14837a14)]
532
+ - Add WIP hallomi [Tiberiu Ichim - [`1ec8776`](https://github.com/eea/volto-chatbot/commit/1ec8776fcde6cf74a23d30961a49acd734838973)]
533
+ ### [0.1.16](https://github.com/eea/volto-chatbot/compare/0.1.15...0.1.16) - 17 April 2025
534
+
535
+ #### :house: Internal changes
536
+
537
+ - style: Automated code fix [eea-jenkins - [`cb7a8ec`](https://github.com/eea/volto-chatbot/commit/cb7a8ec590d13a48e123aec104505368a361ff16)]
538
+ - style: fix spacing in lists [kreafox - [`a6e4ad0`](https://github.com/eea/volto-chatbot/commit/a6e4ad09480aea7c18dda53cc5d312f525dfdfa5)]
539
+
540
+ #### :house: Documentation changes
541
+
542
+ - docs: update README - add enableFeedback to functionalities table [kreafox - [`5350cf3`](https://github.com/eea/volto-chatbot/commit/5350cf34914a6d2635fd11396d7485cfaf7b266e)]
543
+
544
+ ### [0.1.15](https://github.com/eea/volto-chatbot/compare/0.1.14...0.1.15) - 11 April 2025
545
+
546
+ #### :bug: Bug Fixes
547
+
548
+ - fix: ensure enableFeedback is true by default [kreafox - [`2e24bfa`](https://github.com/eea/volto-chatbot/commit/2e24bfa321ffd810013deb356bfc60d93e697fdd)]
549
+
550
+ ### [0.1.14](https://github.com/eea/volto-chatbot/compare/0.1.13...0.1.14) - 8 April 2025
551
+
552
+ #### :rocket: New Features
553
+
554
+ - feat: add feedback reasons - refs #281097 [kreafox - [`f4e8c9f`](https://github.com/eea/volto-chatbot/commit/f4e8c9f79daf49fc68b22232dfa7ac75ca578c54)]
555
+ - feat: send feedback via API, add toast notifications, UI improvements - refs #281097 [kreafox - [`1cc22a5`](https://github.com/eea/volto-chatbot/commit/1cc22a5892618b7349bc60abe3507fe460f1ce19)]
556
+ - feat: add copy to clipboard functionality - refs #281097 [kreafox - [`ac38c6c`](https://github.com/eea/volto-chatbot/commit/ac38c6c860c5953ebcc86a158bc60d4d78e779c9)]
557
+ - feat: make feedback optional - refs #281097 [kreafox - [`d4335d4`](https://github.com/eea/volto-chatbot/commit/d4335d4cadca82fc4fa9452e2f2b9e08e3c1a83b)]
558
+ - feat: add thumbs up-down (feedback) on messages - #281097 [kreafox - [`86fbbb1`](https://github.com/eea/volto-chatbot/commit/86fbbb14856e5a372bd6e6290562a524a4945459)]
559
+
560
+ #### :house: Internal changes
561
+
562
+ - style: Automated code fix [eea-jenkins - [`51fb662`](https://github.com/eea/volto-chatbot/commit/51fb662c73b3335ca8a370fab519afa76a98c750)]
563
+ - style: Automated code fix [eea-jenkins - [`cd09144`](https://github.com/eea/volto-chatbot/commit/cd09144ff0a9d7c2f7557f47f104e273a89b438f)]
564
+ - style: Automated code fix [eea-jenkins - [`6599768`](https://github.com/eea/volto-chatbot/commit/6599768568f618ee072d91406c6d879ab96b020f)]
565
+
566
+ #### :hammer_and_wrench: Others
567
+
568
+ - test: update test for FeedbackModal.jsx [kreafox - [`31a6dd4`](https://github.com/eea/volto-chatbot/commit/31a6dd46fd4ffafc244521ef56bec240e29ab262)]
569
+ - test: update test for FeedbackModal.jsx [kreafox - [`8820047`](https://github.com/eea/volto-chatbot/commit/882004710f047819d9db35421937ff734f077c50)]
570
+ - test: update snapshots [kreafox - [`91cf490`](https://github.com/eea/volto-chatbot/commit/91cf4903041e5675127280c442881c91e89452ca)]
571
+ - test: add test for FeedbackModal.jsx [kreafox - [`ca197d2`](https://github.com/eea/volto-chatbot/commit/ca197d2523092f614d6bfd9e5849ddd34d2764b4)]
572
+ ### [0.1.13](https://github.com/eea/volto-chatbot/compare/0.1.12...0.1.13) - 20 March 2025
573
+
574
+ #### :hammer_and_wrench: Others
575
+
576
+ - Fix for latest version of onyx [Tiberiu Ichim - [`374e52a`](https://github.com/eea/volto-chatbot/commit/374e52a8287420deee2b3c527588f93742ed2044)]
577
+ ### [0.1.12](https://github.com/eea/volto-chatbot/compare/0.1.11...0.1.12) - 7 February 2025
578
+
579
+ #### :hammer_and_wrench: Others
580
+
581
+ ### [0.1.11](https://github.com/eea/volto-chatbot/compare/0.1.10...0.1.11) - 27 January 2025
582
+
583
+ #### :house: Internal changes
584
+
585
+ - style: Automated code fix [eea-jenkins - [`5c49026`](https://github.com/eea/volto-chatbot/commit/5c49026b966d2528e5f75d69ace8b6d245fc18c0)]
586
+ - style: Automated code fix [eea-jenkins - [`9621f10`](https://github.com/eea/volto-chatbot/commit/9621f1036838ea88a1d7f123adc57e30df710a82)]
587
+ - style: Automated code fix [eea-jenkins - [`f755f7a`](https://github.com/eea/volto-chatbot/commit/f755f7a41691eba869f19fca5ac9f367c41b0d62)]
588
+
589
+ #### :hammer_and_wrench: Others
590
+
591
+ - Remove unused var [Tiberiu Ichim - [`1822507`](https://github.com/eea/volto-chatbot/commit/182250729da9bb0c51dacacbf4dbfbaad856adb6)]
592
+ - Remove unused import [Tiberiu Ichim - [`898fe23`](https://github.com/eea/volto-chatbot/commit/898fe2300432446ffc405ad8fdf902ee9259f0e6)]
593
+ - Improve styling [Tiberiu Ichim - [`9e9cf73`](https://github.com/eea/volto-chatbot/commit/9e9cf731ce2091a0a9bd5565333818d53ff9159e)]
594
+ - Add debouncer for clicks [Tiberiu Ichim - [`9da297c`](https://github.com/eea/volto-chatbot/commit/9da297cd66b1e22002bae8fc92879ea69624d6c2)]
595
+ - Disable new chat button if the chat is streaming [Tiberiu Ichim - [`82ccf47`](https://github.com/eea/volto-chatbot/commit/82ccf47692b9766baf0400e1f6e5eabfdd87a8cc)]
596
+ ### [0.1.10](https://github.com/eea/volto-chatbot/compare/0.1.9...0.1.10) - 18 December 2024
597
+
598
+ #### :house: Internal changes
599
+
600
+ - style: Automated code fix [eea-jenkins - [`5327316`](https://github.com/eea/volto-chatbot/commit/53273163a37b7df635ad5d5a1e2f03a79a54efe2)]
601
+ - style: Automated code fix [eea-jenkins - [`086c4ea`](https://github.com/eea/volto-chatbot/commit/086c4ea2e8d48c825414e8cdf5dc017b74807634)]
602
+
603
+ #### :hammer_and_wrench: Others
604
+
605
+ - Fix tests, add snapshot [kreafox - [`a726555`](https://github.com/eea/volto-chatbot/commit/a72655598d99c081cedb4407073a6263a063fbe0)]
606
+ - Add tests [Tiberiu Ichim - [`08f7bee`](https://github.com/eea/volto-chatbot/commit/08f7bee9fcdcad421b8db90ede6306f87ad16e55)]
607
+ - Move state from the chat window, to improve performance [Tiberiu Ichim - [`0c64ef3`](https://github.com/eea/volto-chatbot/commit/0c64ef3f907efd5ecd29cb4088cc288b82f4b8ed)]
608
+ - Show tool calls [Tiberiu Ichim - [`9e7fb83`](https://github.com/eea/volto-chatbot/commit/9e7fb8377de1f3f1c29cbedd20a39772e3eafe89)]
609
+ ### [0.1.9](https://github.com/eea/volto-chatbot/compare/0.1.8...0.1.9) - 26 November 2024
610
+
611
+ #### :hammer_and_wrench: Others
612
+
613
+ - test: update snapshot [kreafox - [`9381cb9`](https://github.com/eea/volto-chatbot/commit/9381cb90a4d753c1e76d0c62c142f559fb392032)]
614
+ - don't crash if match_highlights is missing [Zoltan Szabo - [`71af903`](https://github.com/eea/volto-chatbot/commit/71af9037338364795075c8522e0e50cdf3bd9560)]
615
+ ### [0.1.8](https://github.com/eea/volto-chatbot/compare/0.1.7...0.1.8) - 26 November 2024
616
+
617
+ ### [0.1.7](https://github.com/eea/volto-chatbot/compare/0.1.6...0.1.7) - 17 October 2024
618
+
619
+ #### :bug: Bug Fixes
620
+
621
+ - fix: updated for danswer api changes [Zoltan Szabo - [`77052f9`](https://github.com/eea/volto-chatbot/commit/77052f94565b16be1b421dcf5296b8b027a98bfa)]
622
+
623
+ #### :hammer_and_wrench: Others
624
+
625
+ - test: update snapshot [kreafox - [`4278486`](https://github.com/eea/volto-chatbot/commit/4278486073e7e7911d136a781cfe70cd1c6c1a1a)]
626
+ ### [0.1.6](https://github.com/eea/volto-chatbot/compare/0.1.5...0.1.6) - 7 October 2024
627
+
628
+ #### :bug: Bug Fixes
629
+
630
+ - fix: prevent scroll on edit mode - refs #277196 [kreafox - [`69f7200`](https://github.com/eea/volto-chatbot/commit/69f7200f415b6906111ff250276ed4a870a62579)]
631
+ - fix: use proper name for edit block component [kreafox - [`07dcb44`](https://github.com/eea/volto-chatbot/commit/07dcb44e544c58563826a9487c524149ece80732)]
632
+
633
+ #### :house: Internal changes
634
+
635
+ - style: Automated code fix [eea-jenkins - [`a00832a`](https://github.com/eea/volto-chatbot/commit/a00832a5b2170fe03b0be218e12eeef3e11926c1)]
636
+
637
+ ### [0.1.5](https://github.com/eea/volto-chatbot/compare/0.1.4...0.1.5) - 4 October 2024
638
+
639
+ #### :rocket: New Features
640
+
641
+ - feat: enhance chatbot input focus and scrolling logic - refs #277196 [kreafox - [`8dd4ef5`](https://github.com/eea/volto-chatbot/commit/8dd4ef5bdc990b427818a217ba64f5f92eb91611)]
642
+
643
+ ### [0.1.4](https://github.com/eea/volto-chatbot/compare/0.1.3...0.1.4) - 24 September 2024
644
+
645
+ #### :bug: Bug Fixes
646
+
647
+ - fix: prevent mapping error by checking assistants validity [kreafox - [`cc0336f`](https://github.com/eea/volto-chatbot/commit/cc0336f9acf0eabcbf8fca0db6663783a7e90961)]
648
+
649
+ #### :house: Internal changes
650
+
651
+ - style: improve css - refs #277196 [kreafox - [`d60bfa9`](https://github.com/eea/volto-chatbot/commit/d60bfa95255a2175923068b23d1d36e4c8ac3d79)]
652
+ - style: related quetions style improvements - refs #277196 [kreafox - [`ebea650`](https://github.com/eea/volto-chatbot/commit/ebea65069d53d89da47dece47af5e3228c20e8bf)]
653
+ - style: Automated code fix [eea-jenkins - [`356c1d8`](https://github.com/eea/volto-chatbot/commit/356c1d815e8d5d7dfd057160a388c07cba469c30)]
654
+ - style: Automated code fix [eea-jenkins - [`1ee6a2f`](https://github.com/eea/volto-chatbot/commit/1ee6a2fe5fb8cb5722b3e887ef1653fbf5415272)]
655
+ - style: style improvements for landing page - refs #277196 [kreafox - [`c6b3118`](https://github.com/eea/volto-chatbot/commit/c6b31185f6a0d3f0727a142f0f1e6570d6a1c8e0)]
656
+ - style: styling improvements - refs #277196 [kreafox - [`2ef8aa3`](https://github.com/eea/volto-chatbot/commit/2ef8aa35ca34b682acbefab14537bf19ba2a40e1)]
657
+ - style: Automated code fix [eea-jenkins - [`bc0c3ff`](https://github.com/eea/volto-chatbot/commit/bc0c3ff735e00431c21fbffb1215e72141fc6eff)]
658
+ - style: improve sources section - refs #277196 [kreafox - [`203d5e2`](https://github.com/eea/volto-chatbot/commit/203d5e2007e9a28b508ea57749ef765f0ca1b521)]
659
+ - style: improve sources section - refs #277196 [kreafox - [`27e6266`](https://github.com/eea/volto-chatbot/commit/27e62660ab6d5f3a7e7bd09d185b33a7e79cf57d)]
660
+ - style: support height with various CSS units - refs #277196 [kreafox - [`bb4d3e7`](https://github.com/eea/volto-chatbot/commit/bb4d3e7832c47997940d3b3082e3a88ad4325f89)]
661
+ - style: Automated code fix [eea-jenkins - [`4ab3743`](https://github.com/eea/volto-chatbot/commit/4ab3743a5d0a100c787d18f7355f532f4eab284c)]
662
+ - style: fix document mapping by using db_doc_id instead of array index - refs #277196 [kreafox - [`5ff9f16`](https://github.com/eea/volto-chatbot/commit/5ff9f1641fb1d91f2dcc630cbeb01b137b2f755c)]
663
+ - style: add max height to conversation area with scrollbar - refs #277196 [kreafox - [`3aa423f`](https://github.com/eea/volto-chatbot/commit/3aa423f058b286d7b74149d91b03ca97f8c44c4c)]
664
+ - style: enhance SourceDetails with default values and icon handling - refs #277196 [kreafox - [`a7d3d76`](https://github.com/eea/volto-chatbot/commit/a7d3d761762c55bcd0ce78b96fe95cafcc82b4c4)]
665
+ - style: add globe icon for link sources - refs #277196 [kreafox - [`4ea273c`](https://github.com/eea/volto-chatbot/commit/4ea273c23fc2f3d2ad61a986f6ea026bfeddde9d)]
666
+ - style: fix warning messages - refs #277196 [kreafox - [`b4e673b`](https://github.com/eea/volto-chatbot/commit/b4e673bcc1fb6b2635e4f80ced5931311fd52241)]
667
+ - style: fix generic class name - refs #270144 [kreafox - [`2a64f9d`](https://github.com/eea/volto-chatbot/commit/2a64f9d6fa6cb8f69fd4925641909e3db9a308cf)]
668
+ - style: fix generic class name - refs #270144 [kreafox - [`4f5588f`](https://github.com/eea/volto-chatbot/commit/4f5588f0efb22c5aae1bf016e55567865b32c9d2)]
669
+ - style: improve sources section - refs #270144 [kreafox - [`6ae0ea9`](https://github.com/eea/volto-chatbot/commit/6ae0ea9c6b4559038c2bb6d622ea893175db047d)]
670
+ - style: improve textarea styling - refs #270144 [kreafox - [`2e629d5`](https://github.com/eea/volto-chatbot/commit/2e629d5d86544cb4135731533216c8d5cc481493)]
671
+
672
+ #### :hammer_and_wrench: Others
673
+
674
+ - Correct handling [Tiberiu Ichim - [`f82623c`](https://github.com/eea/volto-chatbot/commit/f82623c994cba65b2253ca63b281a3b3633b3644)]
675
+ - Provide alternative to JSON [Tiberiu Ichim - [`d3617c2`](https://github.com/eea/volto-chatbot/commit/d3617c2b9ed7aba82c313cd5cd16aff5ea013558)]
676
+ - Add option to enable related questions [Tiberiu Ichim - [`a2e94f1`](https://github.com/eea/volto-chatbot/commit/a2e94f12b3dec8fefb3c450fbd3015558fb45efa)]
677
+ - Finish implementation of feature [Tiberiu Ichim - [`c58e7c3`](https://github.com/eea/volto-chatbot/commit/c58e7c3889cfad8cc6ab3e78ccb1f6ff308d9331)]
678
+ - WIP [Tiberiu Ichim - [`74b86eb`](https://github.com/eea/volto-chatbot/commit/74b86ebf09ac01a37fdd4b08dd344360bd9a0e32)]
679
+ - tests: update tests [kreafox - [`45c0aaa`](https://github.com/eea/volto-chatbot/commit/45c0aaaed8b6261d051186b52bbd817c54a86262)]
680
+ - tests: increase code coverage [kreafox - [`4b6bdda`](https://github.com/eea/volto-chatbot/commit/4b6bdda0a899746b2cd8afb41ef2b04691236b24)]
681
+ - tests: increase code coverage [kreafox - [`2429cc8`](https://github.com/eea/volto-chatbot/commit/2429cc856e035fe0a3f35f7e2321af83ebbf9d53)]
682
+ - tests: increase code coverage [kreafox - [`01ffb7e`](https://github.com/eea/volto-chatbot/commit/01ffb7e028ca263c5f5d3d975bfd0604074d596d)]
683
+ - Remove console.log [Tiberiu Ichim - [`0f562f1`](https://github.com/eea/volto-chatbot/commit/0f562f13e5edff9a6bf8426fa450fa2241fb3a22)]
684
+ - Invalidate cookie [Tiberiu Ichim - [`46ade11`](https://github.com/eea/volto-chatbot/commit/46ade118b567f566e1e928fd834c27e0d491306a)]
685
+ - WIP [Tiberiu Ichim - [`c572b05`](https://github.com/eea/volto-chatbot/commit/c572b05dc24b4f3ef13e16191922ac6cea2fae47)]
686
+ ### [0.1.3](https://github.com/eea/volto-chatbot/compare/0.1.2...0.1.3) - 4 September 2024
687
+
688
+ #### :house: Internal changes
689
+
690
+ - style: Automated code fix [eea-jenkins - [`fc2b165`](https://github.com/eea/volto-chatbot/commit/fc2b16561c2f633a92ab85b012c7dbe031a5c213)]
691
+
692
+ #### :hammer_and_wrench: Others
693
+
694
+ - Remove console log [Tiberiu Ichim - [`a17a8cd`](https://github.com/eea/volto-chatbot/commit/a17a8cdd06da8e2134b81100c166c0d10a8d4f16)]
695
+ - Cleanup [Tiberiu Ichim - [`48987e9`](https://github.com/eea/volto-chatbot/commit/48987e985fb5e50625ba63e41f352f05518a3812)]
696
+ - Improve chatbot [Tiberiu Ichim - [`89d3cee`](https://github.com/eea/volto-chatbot/commit/89d3cee81cc306cf2e3b4d66cbff0a77c9e7ede6)]
697
+ ### [0.1.2](https://github.com/eea/volto-chatbot/compare/0.1.1...0.1.2) - 15 August 2024
698
+
699
+ #### :house: Internal changes
700
+
701
+ - style: Automated code fix [eea-jenkins - [`b004b2a`](https://github.com/eea/volto-chatbot/commit/b004b2a53dd0577af755e2d8f794b82679bcb83f)]
702
+ - style: Automated code fix [eea-jenkins - [`4fd87bd`](https://github.com/eea/volto-chatbot/commit/4fd87bd39cee66bc08fb1bbec8d3458f32b7c595)]
703
+ - style: improve textarea styling, use autosize textarea - refs #270144 [kreafox - [`d9bd992`](https://github.com/eea/volto-chatbot/commit/d9bd9922796367c9b786382656b7e38e9dbd5abe)]
704
+ - style: Automated code fix [eea-jenkins - [`4afbb06`](https://github.com/eea/volto-chatbot/commit/4afbb06e70c30b5a67ceba5fadca3c6a343e1cac)]
705
+ - style: Automated code fix [eea-jenkins - [`64c7224`](https://github.com/eea/volto-chatbot/commit/64c722489293ddfebda46b87d5beda13df870eac)]
706
+ - style: add user/bot icons, improve styling - refs #270144 [kreafox - [`4d9a507`](https://github.com/eea/volto-chatbot/commit/4d9a507a09bf5b987474ca04602a230eb93951e2)]
707
+ - style: Automated code fix [eea-jenkins - [`594a313`](https://github.com/eea/volto-chatbot/commit/594a313f6c1e61b160eee46d8698fa8ab91e57db)]
708
+ - style: fix sources with long names, refs #270144 [kreafox - [`3aaafe6`](https://github.com/eea/volto-chatbot/commit/3aaafe6e82c64f0f057b8e7a61d0c066e7f842e5)]
709
+ - style: Automated code fix [eea-jenkins - [`ea192d0`](https://github.com/eea/volto-chatbot/commit/ea192d0d4ec0858af1bb115427e40d174a01094a)]
710
+ - style: Automated code fix [eea-jenkins - [`2591616`](https://github.com/eea/volto-chatbot/commit/2591616502abbffb1627076cc0593caa6010e367)]
711
+ - style: Automated code fix [eea-jenkins - [`e17c897`](https://github.com/eea/volto-chatbot/commit/e17c897f67764aa5db083952a6046c8a6b659620)]
712
+ - style: Automated code fix [eea-jenkins - [`d9f18f6`](https://github.com/eea/volto-chatbot/commit/d9f18f6ca128c1007dea24cdcc6ea419849dfbdf)]
713
+ - style: Automated code fix [eea-jenkins - [`79ad8b0`](https://github.com/eea/volto-chatbot/commit/79ad8b0a318e2e1a2b3590632c3042f77301ce90)]
714
+ - style: Automated code fix [eea-jenkins - [`6847efb`](https://github.com/eea/volto-chatbot/commit/6847efb159cfc6f0d76ae32d47bd41d53b04f24e)]
715
+
716
+ #### :hammer_and_wrench: Others
717
+
718
+ - remove log [Tiberiu Ichim - [`d49a1ab`](https://github.com/eea/volto-chatbot/commit/d49a1ab5d24924b7e7dcbe1c6cf31585e6b25c46)]
719
+ - Use message from start_mesage [Tiberiu Ichim - [`64ae9dd`](https://github.com/eea/volto-chatbot/commit/64ae9ddaf183a37338cc7eca9b958dc51b85ab7d)]
720
+ - Improve linking of docs [Tiberiu Ichim - [`9dd36f0`](https://github.com/eea/volto-chatbot/commit/9dd36f0b1b0fdc1bfc21106fb337fd5aeb1e555f)]
721
+ - Fix index of documents [Tiberiu Ichim - [`d3f3a87`](https://github.com/eea/volto-chatbot/commit/d3f3a87afef55bc3464b8ac7ca298b8e088d5b85)]
722
+ - Small style tweak [Tiberiu Ichim - [`ddac5a3`](https://github.com/eea/volto-chatbot/commit/ddac5a345782e9f2eb48c6735492b8954438d1fe)]
723
+ - refs #270144 - convert email addresses to mailto links in markdown content [kreafox - [`520cef3`](https://github.com/eea/volto-chatbot/commit/520cef39f6afae72176aa3420da214cc65d9a7bd)]
724
+ - Don't reset the submit handler [Tiberiu Ichim - [`09499e1`](https://github.com/eea/volto-chatbot/commit/09499e1ba888dabc808d01e726f5b8a6f2fdb0f2)]
725
+ - ref #270144 - rename clear button, add icon [kreafox - [`88badb9`](https://github.com/eea/volto-chatbot/commit/88badb91a77593e104fc6c96c88eeb127aa3546b)]
726
+ - ref #270144 - add clear chat button; clear input on submit [kreafox - [`b5fbd86`](https://github.com/eea/volto-chatbot/commit/b5fbd8673647212a4de4a737ab704d8e82acd316)]
727
+ - ref #270144 - sources style improvements [kreafox - [`71320e7`](https://github.com/eea/volto-chatbot/commit/71320e7413da55f5a7102d1bd3304199d5e9dc7a)]
728
+ - ref #270144 - Add loader [kreafox - [`d9dfa44`](https://github.com/eea/volto-chatbot/commit/d9dfa442d3649ea99fd45cd7fe15aa01f5c69a58)]
729
+ - Add busy indicator [Tiberiu Ichim - [`8109b0d`](https://github.com/eea/volto-chatbot/commit/8109b0d7ab4096fb95c5419eba8dfb1bc867f986)]
730
+ - Rework citations [Tiberiu Ichim - [`7607050`](https://github.com/eea/volto-chatbot/commit/76070504335989e85d2bec74611db6482adcfae4)]
731
+ - Load some remark libraries [Tiberiu Ichim - [`2800ad8`](https://github.com/eea/volto-chatbot/commit/2800ad8435ba181db089b17f16957a4b7073a3be)]
732
+ - Bump version [kreafox - [`ba4c749`](https://github.com/eea/volto-chatbot/commit/ba4c749a05255fa76d831ca3127c50666f33953b)]
733
+ - Fix ESLint warnings [kreafox - [`61aa82c`](https://github.com/eea/volto-chatbot/commit/61aa82c79c1454f41724449e98e04445645f946e)]
734
+ - Bump cypress version to fix cypress testing [kreafox - [`dcaafa1`](https://github.com/eea/volto-chatbot/commit/dcaafa1664c430f24a5dd4e3929f58fd0be03346)]
735
+ - Needs this middleware [Tiberiu Ichim - [`300913a`](https://github.com/eea/volto-chatbot/commit/300913af9538934ea1ae6e3a10210824b00bb0d5)]
736
+ - Downgrade node_fetch [Tiberiu Ichim - [`5533eec`](https://github.com/eea/volto-chatbot/commit/5533eec9ac8fba92baca2b9150d23016797f1ea5)]
737
+ - Downgrade and use react-markdown [Tiberiu Ichim - [`c7b7b9e`](https://github.com/eea/volto-chatbot/commit/c7b7b9e1ae6b07dafc5e32980dcea2945eaee062)]
738
+ - Remove console.log [Tiberiu Ichim - [`fe77c3e`](https://github.com/eea/volto-chatbot/commit/fe77c3e4fa54b32feb8a29420a0305f304cf91f5)]
739
+ - Click fix [Tiberiu Ichim - [`62d2d81`](https://github.com/eea/volto-chatbot/commit/62d2d8159548c9eea1cf4fc0ece8ea71280bed92)]
740
+ - Checkpoint [Tiberiu Ichim - [`5062748`](https://github.com/eea/volto-chatbot/commit/50627486552b4afd5a5d663b1de47830d7ede066)]
741
+ - Checkpoint [Tiberiu Ichim - [`18981b9`](https://github.com/eea/volto-chatbot/commit/18981b92206b0ff62320b8437d1edd17aeed10e2)]
742
+ - Checkpoint [Tiberiu Ichim - [`9c68214`](https://github.com/eea/volto-chatbot/commit/9c682144acb7e038a5321b1247795e555a13547a)]
743
+ - WIP [Tiberiu Ichim - [`13d75d8`](https://github.com/eea/volto-chatbot/commit/13d75d8511e81dc287bea8e4f4496f1623312a82)]
744
+ - WIP [Tiberiu Ichim - [`e4dbab8`](https://github.com/eea/volto-chatbot/commit/e4dbab83ac99fa691479539d262333350eb6cbe1)]
745
+ - WIP [Tiberiu Ichim - [`0323fe5`](https://github.com/eea/volto-chatbot/commit/0323fe533c2d28c2367cb6239f90596740bc0a6e)]
746
+ - WIP [Tiberiu Ichim - [`3b55b5c`](https://github.com/eea/volto-chatbot/commit/3b55b5c6eb5b427baee2abc024bc63ec5b93f843)]
747
+ - WIP [Tiberiu Ichim - [`1a2d3f6`](https://github.com/eea/volto-chatbot/commit/1a2d3f6d495c86e026bb95cdd529c6054f5c241c)]
748
+ - Use node-fetch in middleware [Tiberiu Ichim - [`90c9c28`](https://github.com/eea/volto-chatbot/commit/90c9c28a052c601c032a6a7ed0836c7b8456db98)]
749
+ - Before bring node-fetch [Tiberiu Ichim - [`3bfae76`](https://github.com/eea/volto-chatbot/commit/3bfae76562185e61e8ea37603deeea9e70239d0b)]
750
+ - Before bring node-fetch [Tiberiu Ichim - [`9abb1e3`](https://github.com/eea/volto-chatbot/commit/9abb1e374904e44fe52f01106ee94af31dc37ea1)]
751
+ - Add more components [Tiberiu Ichim - [`8b8fb36`](https://github.com/eea/volto-chatbot/commit/8b8fb36734bd4965214a1df5858501385b3c35dc)]
752
+ - Fix preview block when editing [Tiberiu Ichim - [`ad82d92`](https://github.com/eea/volto-chatbot/commit/ad82d92337c2b0f0984c138f975f616c3b6903d5)]
753
+ - More code [Tiberiu Ichim - [`7992323`](https://github.com/eea/volto-chatbot/commit/7992323cfaf246d208d50f9fd95803727e84e745)]
754
+ - Add block [Tiberiu Ichim - [`fe47b70`](https://github.com/eea/volto-chatbot/commit/fe47b70226f9d36e1de7918964f4e744450e18a6)]
755
+ - Add block [Tiberiu Ichim - [`58f3ecd`](https://github.com/eea/volto-chatbot/commit/58f3ecdeb8b8342e5ee87fcea01cf0fc2dd83721)]
756
+ - Add block [Tiberiu Ichim - [`6b594b7`](https://github.com/eea/volto-chatbot/commit/6b594b75997f777da93f102c3f807d37d65ba693)]
757
+ - Better errors [Tiberiu Ichim - [`78ef06c`](https://github.com/eea/volto-chatbot/commit/78ef06c789136597de2b2a5637e2aefe95184576)]
758
+ - Add middleware [Tiberiu Ichim - [`9a21d26`](https://github.com/eea/volto-chatbot/commit/9a21d266fc3e16b534dc987b823a19e090c9a4a1)]
759
+ ### [0.1.1](https://github.com/eea/volto-chatbot/compare/0.1.0...0.1.1) - 1 August 2024
760
+
761
+ #### :hammer_and_wrench: Others
762
+
763
+ - Update package.json [dobri1408 - [`f1600ca`](https://github.com/eea/volto-chatbot/commit/f1600caf6ce0658d11dec116fcb20deb369f66a1)]
764
+ - Fix jest-addon.config.js [alin - [`779dd52`](https://github.com/eea/volto-chatbot/commit/779dd52b5705db6308399e8fbeec6cc2f61ffcbe)]
765
+ - Fix Jenkinsfile and package.json [alin - [`6f53880`](https://github.com/eea/volto-chatbot/commit/6f5388048f0a47db10953fcf95e5154d3bc09d86)]
766
+ ### 0.1.0 - 1 August 2024
767
+
768
+ #### :hammer_and_wrench: Others
769
+
770
+ - Initial commit [Tiberiu Ichim - [`c9e59d3`](https://github.com/eea/volto-chatbot/commit/c9e59d3d0d91c2a40c5d215aa26d8ed982fd7856)]