├── .gitignore ├── README.md ├── config.hjson ├── package.json ├── src ├── call-sgp.ts ├── generate-sgd.ts ├── main.ts ├── parse-messages.ts └── typings │ └── global.d.ts ├── start.bat └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | node_modules 3 | pnpm-lock.yaml 4 | dist 5 | temp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/README.md -------------------------------------------------------------------------------- /config.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/config.hjson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/package.json -------------------------------------------------------------------------------- /src/call-sgp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/src/call-sgp.ts -------------------------------------------------------------------------------- /src/generate-sgd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/src/generate-sgd.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/parse-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/src/parse-messages.ts -------------------------------------------------------------------------------- /src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/src/typings/global.d.ts -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/start.bat -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chlamydomonos/silly-tavern-temp-proxy/HEAD/tsconfig.json --------------------------------------------------------------------------------