├── .gitignore ├── .prettierrc.json ├── LICENSE ├── dist ├── index.js └── style.css ├── images ├── icon.png ├── popup.png └── settings.png ├── manifest.json ├── package.json ├── readme.md ├── src ├── components │ ├── AlternateGreetings.tsx │ ├── CharacterField.tsx │ ├── CompareFieldPopup.tsx │ ├── CompareStatePopup.tsx │ ├── CurrentStatePopup.tsx │ ├── MainPopup.tsx │ ├── PopupManager.tsx │ ├── ReviseSessionChat.tsx │ ├── ReviseSessionManager.tsx │ └── Settings.tsx ├── constants.ts ├── generate.ts ├── hooks │ └── useForceUpdate.ts ├── index.tsx ├── parsers.ts ├── request.ts ├── revise-prompt-builder.ts ├── revise-types.ts ├── schema-to-example.ts ├── settings.ts ├── styles │ └── main.scss └── test │ └── parser.test.ts ├── templates └── settings.html ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/LICENSE -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/dist/style.css -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/images/popup.png -------------------------------------------------------------------------------- /images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/images/settings.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/readme.md -------------------------------------------------------------------------------- /src/components/AlternateGreetings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/AlternateGreetings.tsx -------------------------------------------------------------------------------- /src/components/CharacterField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/CharacterField.tsx -------------------------------------------------------------------------------- /src/components/CompareFieldPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/CompareFieldPopup.tsx -------------------------------------------------------------------------------- /src/components/CompareStatePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/CompareStatePopup.tsx -------------------------------------------------------------------------------- /src/components/CurrentStatePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/CurrentStatePopup.tsx -------------------------------------------------------------------------------- /src/components/MainPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/MainPopup.tsx -------------------------------------------------------------------------------- /src/components/PopupManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/PopupManager.tsx -------------------------------------------------------------------------------- /src/components/ReviseSessionChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/ReviseSessionChat.tsx -------------------------------------------------------------------------------- /src/components/ReviseSessionManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/ReviseSessionManager.tsx -------------------------------------------------------------------------------- /src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/components/Settings.tsx -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/generate.ts -------------------------------------------------------------------------------- /src/hooks/useForceUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/hooks/useForceUpdate.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/parsers.ts -------------------------------------------------------------------------------- /src/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/request.ts -------------------------------------------------------------------------------- /src/revise-prompt-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/revise-prompt-builder.ts -------------------------------------------------------------------------------- /src/revise-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/revise-types.ts -------------------------------------------------------------------------------- /src/schema-to-example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/schema-to-example.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/test/parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/src/test/parser.test.ts -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/templates/settings.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-Character-Creator/HEAD/vite.config.ts --------------------------------------------------------------------------------