├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CLAUDE.md ├── LICENSE ├── README.md ├── docs └── i18n-usage.md ├── electron-builder.yml ├── electron.vite.config.ts ├── i18next-scanner.config.js ├── package.json ├── resources ├── icon.icns ├── icon.ico └── icon.png ├── src ├── main │ ├── index.ts │ ├── menu-manager.ts │ └── window-manager.ts ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── WebSDK │ ├── Core │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.ja.md │ │ ├── README.md │ │ ├── RedistributableFiles.txt │ │ ├── live2dcubismcore.d.ts │ │ ├── live2dcubismcore.js │ │ ├── live2dcubismcore.js.map │ │ └── live2dcubismcore.min.js │ ├── Framework │ │ ├── .editorconfig │ │ ├── .eslintrc.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.ja.md │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── cubismdefaultparameterid.ts │ │ │ ├── cubismframeworkconfig.ts │ │ │ ├── cubismmodelsettingjson.ts │ │ │ ├── effect │ │ │ │ ├── cubismbreath.ts │ │ │ │ ├── cubismeyeblink.ts │ │ │ │ └── cubismpose.ts │ │ │ ├── icubismallcator.ts │ │ │ ├── icubismmodelsetting.ts │ │ │ ├── id │ │ │ │ ├── cubismid.ts │ │ │ │ └── cubismidmanager.ts │ │ │ ├── live2dcubismframework.ts │ │ │ ├── math │ │ │ │ ├── cubismmath.ts │ │ │ │ ├── cubismmatrix44.ts │ │ │ │ ├── cubismmodelmatrix.ts │ │ │ │ ├── cubismtargetpoint.ts │ │ │ │ ├── cubismvector2.ts │ │ │ │ └── cubismviewmatrix.ts │ │ │ ├── model │ │ │ │ ├── cubismmoc.ts │ │ │ │ ├── cubismmodel.ts │ │ │ │ ├── cubismmodeluserdata.ts │ │ │ │ ├── cubismmodeluserdatajson.ts │ │ │ │ └── cubismusermodel.ts │ │ │ ├── motion │ │ │ │ ├── acubismmotion.ts │ │ │ │ ├── cubismexpressionmotion.ts │ │ │ │ ├── cubismexpressionmotionmanager.ts │ │ │ │ ├── cubismmotion.ts │ │ │ │ ├── cubismmotioninternal.ts │ │ │ │ ├── cubismmotionjson.ts │ │ │ │ ├── cubismmotionmanager.ts │ │ │ │ ├── cubismmotionqueueentry.ts │ │ │ │ └── cubismmotionqueuemanager.ts │ │ │ ├── physics │ │ │ │ ├── cubismphysics.ts │ │ │ │ ├── cubismphysicsinternal.ts │ │ │ │ └── cubismphysicsjson.ts │ │ │ ├── rendering │ │ │ │ ├── cubismclippingmanager.ts │ │ │ │ ├── cubismrenderer.ts │ │ │ │ ├── cubismrenderer_webgl.ts │ │ │ │ └── cubismshader_webgl.ts │ │ │ ├── type │ │ │ │ ├── csmmap.ts │ │ │ │ ├── csmrectf.ts │ │ │ │ ├── csmstring.ts │ │ │ │ └── csmvector.ts │ │ │ └── utils │ │ │ │ ├── cubismdebug.ts │ │ │ │ ├── cubismjson.ts │ │ │ │ ├── cubismjsonextension.ts │ │ │ │ └── cubismstring.ts │ │ └── tsconfig.json │ └── src │ │ ├── lappadapter.ts │ │ ├── lappdefine.ts │ │ ├── lappdelegate.ts │ │ ├── lappglmanager.ts │ │ ├── lapplive2dmanager.ts │ │ ├── lappmodel.ts │ │ ├── lapppal.ts │ │ ├── lappsprite.ts │ │ ├── lapptexturemanager.ts │ │ ├── lappview.ts │ │ ├── lappwavfilehandler.ts │ │ ├── main.ts │ │ └── touchmanager.ts │ ├── index.html │ ├── public │ ├── favicon.ico │ └── libs │ │ ├── live2d.min.js │ │ └── live2dcubismcore.min.js │ └── src │ ├── App.tsx │ ├── assets │ └── react.svg │ ├── components │ ├── canvas │ │ ├── background.tsx │ │ ├── canvas-styles.tsx │ │ ├── canvas.tsx │ │ ├── live2d.tsx │ │ ├── subtitle.tsx │ │ └── ws-status.tsx │ ├── electron │ │ ├── electron-style.tsx │ │ ├── input-subtitle.tsx │ │ └── title-bar.tsx │ ├── footer │ │ ├── ai-state-indicator.tsx │ │ ├── footer-styles.tsx │ │ └── footer.tsx │ ├── sidebar │ │ ├── bottom-tab.tsx │ │ ├── browser-panel.tsx │ │ ├── camera-panel.tsx │ │ ├── chat-bubble.tsx │ │ ├── chat-history-panel.tsx │ │ ├── group-drawer.tsx │ │ ├── history-drawer.tsx │ │ ├── invite-dialog.tsx │ │ ├── screen-panel.tsx │ │ ├── setting │ │ │ ├── about.tsx │ │ │ ├── agent.tsx │ │ │ ├── asr.tsx │ │ │ ├── common.tsx │ │ │ ├── general.tsx │ │ │ ├── live2d.tsx │ │ │ ├── setting-styles.tsx │ │ │ ├── setting-ui.tsx │ │ │ └── tts.tsx │ │ ├── sidebar-styles.tsx │ │ └── sidebar.tsx │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── checkbox.tsx │ │ ├── clipboard.tsx │ │ ├── close-button.tsx │ │ ├── color-mode.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── field.tsx │ │ ├── input-group.tsx │ │ ├── number-input.tsx │ │ ├── popover.tsx │ │ ├── provider.tsx │ │ ├── radio.tsx │ │ ├── select.tsx │ │ ├── slider.tsx │ │ ├── switch.tsx │ │ ├── tag.tsx │ │ ├── toaster.tsx │ │ └── tooltip.tsx │ ├── context │ ├── ai-state-context.tsx │ ├── bgurl-context.tsx │ ├── browser-context.tsx │ ├── camera-context.tsx │ ├── character-config-context.tsx │ ├── chat-history-context.tsx │ ├── group-context.tsx │ ├── live2d-config-context.tsx │ ├── mode-context.tsx │ ├── proactive-speak-context.tsx │ ├── screen-capture-context.tsx │ ├── subtitle-context.tsx │ ├── vad-context.tsx │ └── websocket-context.tsx │ ├── electron.d.ts │ ├── env.d.ts │ ├── hooks │ ├── canvas │ │ ├── use-background.ts │ │ ├── use-live2d-expression.ts │ │ ├── use-live2d-model.ts │ │ ├── use-live2d-resize.ts │ │ ├── use-subtitle-display.ts │ │ └── use-ws-status.ts │ ├── electron │ │ ├── use-draggable.ts │ │ └── use-input-subtitle.ts │ ├── footer │ │ ├── use-footer.ts │ │ └── use-text-input.tsx │ ├── sidebar │ │ ├── setting │ │ │ ├── use-agent-settings.ts │ │ │ ├── use-asr-settings.ts │ │ │ ├── use-general-settings.ts │ │ │ └── use-live2d-settings.ts │ │ ├── use-camera-panel.ts │ │ ├── use-capture-screen.ts │ │ ├── use-chat-history-panel.ts │ │ ├── use-group-drawer.tsx │ │ ├── use-history-drawer.ts │ │ ├── use-invite-dialog.ts │ │ └── use-sidebar.ts │ └── utils │ │ ├── use-audio-task.ts │ │ ├── use-force-ignore-mouse.ts │ │ ├── use-interrupt.ts │ │ ├── use-ipc-handlers.ts │ │ ├── use-local-storage.ts │ │ ├── use-media-capture.tsx │ │ ├── use-mic-toggle.ts │ │ ├── use-send-audio.tsx │ │ ├── use-switch-character.tsx │ │ └── use-trigger-speak.ts │ ├── i18n.ts │ ├── index.css │ ├── layout.tsx │ ├── locales │ ├── en │ │ └── translation.json │ └── zh │ │ └── translation.json │ ├── main.tsx │ ├── services │ ├── websocket-handler.tsx │ └── websocket-service.tsx │ ├── utils │ ├── audio-manager.ts │ └── task-queue.ts │ └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.web.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/README.md -------------------------------------------------------------------------------- /docs/i18n-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/docs/i18n-usage.md -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /i18next-scanner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/i18next-scanner.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/resources/icon.png -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/menu-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/main/menu-manager.ts -------------------------------------------------------------------------------- /src/main/window-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/main/window-manager.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/CHANGELOG.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/LICENSE.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/README.ja.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/README.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/RedistributableFiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/RedistributableFiles.txt -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/live2dcubismcore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/live2dcubismcore.d.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/live2dcubismcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/live2dcubismcore.js -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/live2dcubismcore.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/live2dcubismcore.js.map -------------------------------------------------------------------------------- /src/renderer/WebSDK/Core/live2dcubismcore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Core/live2dcubismcore.min.js -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/.editorconfig -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/.eslintrc.yml -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/.gitignore -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/.vscode/extensions.json -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/.vscode/settings.json -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/.vscode/tasks.json -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/CHANGELOG.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/LICENSE.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/README.ja.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/README.md -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/package-lock.json -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/package.json -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/cubismdefaultparameterid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/cubismdefaultparameterid.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/cubismframeworkconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/cubismframeworkconfig.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/cubismmodelsettingjson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/cubismmodelsettingjson.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/effect/cubismbreath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/effect/cubismbreath.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/effect/cubismeyeblink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/effect/cubismeyeblink.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/effect/cubismpose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/effect/cubismpose.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/icubismallcator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/icubismallcator.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/icubismmodelsetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/icubismmodelsetting.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/id/cubismid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/id/cubismid.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/id/cubismidmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/id/cubismidmanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/live2dcubismframework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/live2dcubismframework.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/math/cubismmath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/math/cubismmath.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/math/cubismmatrix44.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/math/cubismmatrix44.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/math/cubismmodelmatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/math/cubismmodelmatrix.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/math/cubismtargetpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/math/cubismtargetpoint.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/math/cubismvector2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/math/cubismvector2.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/math/cubismviewmatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/math/cubismviewmatrix.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/model/cubismmoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/model/cubismmoc.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/model/cubismmodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/model/cubismmodel.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/model/cubismmodeluserdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/model/cubismmodeluserdata.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/model/cubismmodeluserdatajson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/model/cubismmodeluserdatajson.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/model/cubismusermodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/model/cubismusermodel.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/acubismmotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/acubismmotion.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismexpressionmotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismexpressionmotion.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismexpressionmotionmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismexpressionmotionmanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismmotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismmotion.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismmotioninternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismmotioninternal.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismmotionjson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismmotionjson.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismmotionmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismmotionmanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismmotionqueueentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismmotionqueueentry.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/motion/cubismmotionqueuemanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/motion/cubismmotionqueuemanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/physics/cubismphysics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/physics/cubismphysics.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/physics/cubismphysicsinternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/physics/cubismphysicsinternal.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/physics/cubismphysicsjson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/physics/cubismphysicsjson.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/rendering/cubismclippingmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/rendering/cubismclippingmanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/rendering/cubismrenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/rendering/cubismrenderer.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/rendering/cubismrenderer_webgl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/rendering/cubismrenderer_webgl.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/rendering/cubismshader_webgl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/rendering/cubismshader_webgl.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/type/csmmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/type/csmmap.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/type/csmrectf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/type/csmrectf.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/type/csmstring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/type/csmstring.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/type/csmvector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/type/csmvector.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/utils/cubismdebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/utils/cubismdebug.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/utils/cubismjson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/utils/cubismjson.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/utils/cubismjsonextension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/utils/cubismjsonextension.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/src/utils/cubismstring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/src/utils/cubismstring.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/Framework/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/Framework/tsconfig.json -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappadapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappadapter.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappdefine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappdefine.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappdelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappdelegate.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappglmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappglmanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lapplive2dmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lapplive2dmanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappmodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappmodel.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lapppal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lapppal.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappsprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappsprite.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lapptexturemanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lapptexturemanager.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappview.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/lappwavfilehandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/lappwavfilehandler.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/main.ts -------------------------------------------------------------------------------- /src/renderer/WebSDK/src/touchmanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/WebSDK/src/touchmanager.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/public/favicon.ico -------------------------------------------------------------------------------- /src/renderer/public/libs/live2d.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/public/libs/live2d.min.js -------------------------------------------------------------------------------- /src/renderer/public/libs/live2dcubismcore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/public/libs/live2dcubismcore.min.js -------------------------------------------------------------------------------- /src/renderer/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/App.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/assets/react.svg -------------------------------------------------------------------------------- /src/renderer/src/components/canvas/background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/canvas/background.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/canvas/canvas-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/canvas/canvas-styles.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/canvas/canvas.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/src/components/canvas/live2d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/canvas/live2d.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/canvas/subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/canvas/subtitle.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/canvas/ws-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/canvas/ws-status.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/electron/electron-style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/electron/electron-style.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/electron/input-subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/electron/input-subtitle.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/electron/title-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/electron/title-bar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/footer/ai-state-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/footer/ai-state-indicator.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/footer/footer-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/footer/footer-styles.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/footer/footer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/bottom-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/bottom-tab.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/browser-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/browser-panel.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/camera-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/camera-panel.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/chat-bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/chat-bubble.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/chat-history-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/chat-history-panel.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/group-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/group-drawer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/history-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/history-drawer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/invite-dialog.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/screen-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/screen-panel.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/about.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/agent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/agent.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/asr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/asr.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/common.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/general.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/general.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/live2d.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/live2d.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/setting-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/setting-styles.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/setting-ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/setting-ui.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/setting/tts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/setting/tts.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/sidebar-styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/sidebar-styles.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/clipboard.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/close-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/close-button.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/color-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/color-mode.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/field.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/input-group.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/number-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/number-input.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/provider.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/radio.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/tag.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/ai-state-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/ai-state-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/bgurl-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/bgurl-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/browser-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/browser-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/camera-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/camera-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/character-config-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/character-config-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/chat-history-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/chat-history-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/group-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/group-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/live2d-config-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/live2d-config-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/mode-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/mode-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/proactive-speak-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/proactive-speak-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/screen-capture-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/screen-capture-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/subtitle-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/subtitle-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/vad-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/vad-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/websocket-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/context/websocket-context.tsx -------------------------------------------------------------------------------- /src/renderer/src/electron.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/electron.d.ts -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/canvas/use-background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/canvas/use-background.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/canvas/use-live2d-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/canvas/use-live2d-expression.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/canvas/use-live2d-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/canvas/use-live2d-model.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/canvas/use-live2d-resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/canvas/use-live2d-resize.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/canvas/use-subtitle-display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/canvas/use-subtitle-display.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/canvas/use-ws-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/canvas/use-ws-status.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/electron/use-draggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/electron/use-draggable.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/electron/use-input-subtitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/electron/use-input-subtitle.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/footer/use-footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/footer/use-footer.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/footer/use-text-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/footer/use-text-input.tsx -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/setting/use-agent-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/setting/use-agent-settings.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/setting/use-asr-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/setting/use-asr-settings.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/setting/use-general-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/setting/use-general-settings.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/setting/use-live2d-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/setting/use-live2d-settings.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-camera-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/use-camera-panel.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-capture-screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/use-capture-screen.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-chat-history-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/use-chat-history-panel.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-group-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/use-group-drawer.tsx -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-history-drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/use-history-drawer.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-invite-dialog.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/src/hooks/sidebar/use-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/sidebar/use-sidebar.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-audio-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-audio-task.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-force-ignore-mouse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-force-ignore-mouse.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-interrupt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-interrupt.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-ipc-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-ipc-handlers.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-local-storage.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-media-capture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-media-capture.tsx -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-mic-toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-mic-toggle.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-send-audio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-send-audio.tsx -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-switch-character.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-switch-character.tsx -------------------------------------------------------------------------------- /src/renderer/src/hooks/utils/use-trigger-speak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/hooks/utils/use-trigger-speak.ts -------------------------------------------------------------------------------- /src/renderer/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/i18n.ts -------------------------------------------------------------------------------- /src/renderer/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/index.css -------------------------------------------------------------------------------- /src/renderer/src/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/layout.tsx -------------------------------------------------------------------------------- /src/renderer/src/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/locales/en/translation.json -------------------------------------------------------------------------------- /src/renderer/src/locales/zh/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/locales/zh/translation.json -------------------------------------------------------------------------------- /src/renderer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/services/websocket-handler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/services/websocket-handler.tsx -------------------------------------------------------------------------------- /src/renderer/src/services/websocket-service.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/services/websocket-service.tsx -------------------------------------------------------------------------------- /src/renderer/src/utils/audio-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/utils/audio-manager.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/task-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/src/renderer/src/utils/task-queue.ts -------------------------------------------------------------------------------- /src/renderer/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/tsconfig.web.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/HEAD/vite.config.ts --------------------------------------------------------------------------------