feat: add React UI with Vite, chat interface, streaming display

This commit is contained in:
2026-04-13 15:03:01 -04:00
parent afffdeafb8
commit 922e724cfe
2335 changed files with 736155 additions and 0 deletions

12
ui/node_modules/browserslist/error.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
function BrowserslistError(message) {
this.name = 'BrowserslistError'
this.message = message
this.browserslist = true
if (Error.captureStackTrace) {
Error.captureStackTrace(this, BrowserslistError)
}
}
BrowserslistError.prototype = Error.prototype
module.exports = BrowserslistError