diff --git a/.gitignore b/.gitignore index 0a122424c..b96cc236a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,9 +3,12 @@ public/chats/ public/characters/ public/User Avatars/ public/backgrounds/ +public/groups/ +public/worlds/ +public/css/bg_load.css /uploads/ *.jsonl -public/settings.json config.conf .DS_Store public/settings.json +/thumbnails diff --git a/package-lock.json b/package-lock.json index 0a9e4d1b8..d02a360e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,31 +1,40 @@ { "name": "TavernAI", - "version": "1.2.8", + "version": "1.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "TavernAI", - "version": "1.2.8", + "version": "1.2.0", "dependencies": { + "@dqbd/tiktoken": "^1.0.2", + "axios": "^1.3.4", "cookie-parser": "^1.4.6", "cors": "^2.8.5", "csrf-csrf": "^2.2.3", "express": "^4.18.2", "ipaddr.js": "^2.0.1", "jimp": "^0.22.7", + "mime-types": "^2.1.35", "multer": "^1.4.5-lts.1", "node-rest-client": "^3.1.1", "open": "^8.4.0", "png-chunk-text": "^1.0.0", "png-chunks-encode": "^1.0.0", "png-chunks-extract": "^1.0.0", - "rimraf": "^3.0.2" + "rimraf": "^3.0.2", + "sanitize-filename": "^1.6.3" }, "bin": { "TavernAI": "server.js" } }, + "node_modules/@dqbd/tiktoken": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@dqbd/tiktoken/-/tiktoken-1.0.2.tgz", + "integrity": "sha512-AjGTBRWsMoVmVeN55NLyupyM8TNamOUBl6tj5t/leLDVup3CFGO9tVagNL1jf3GyZLkWZSTmYVbPQ/M2LEcNzw==" + }, "node_modules/@jimp/bmp": { "version": "0.22.7", "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.7.tgz", @@ -466,6 +475,21 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.4.tgz", + "integrity": "sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -607,6 +631,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -735,6 +770,14 @@ "node": ">=8" } }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -907,6 +950,19 @@ } } }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -1511,6 +1567,11 @@ "node": ">= 0.10" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "node_modules/qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", @@ -1637,6 +1698,14 @@ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, + "node_modules/sanitize-filename": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", + "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", + "dependencies": { + "truncate-utf8-bytes": "^1.0.0" + } + }, "node_modules/sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", @@ -1804,6 +1873,14 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, + "node_modules/truncate-utf8-bytes": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", + "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", + "dependencies": { + "utf8-byte-length": "^1.0.1" + } + }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -1829,6 +1906,11 @@ "node": ">= 0.8" } }, + "node_modules/utf8-byte-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz", + "integrity": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==" + }, "node_modules/utif2": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.0.1.tgz", @@ -1928,6 +2010,11 @@ } }, "dependencies": { + "@dqbd/tiktoken": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@dqbd/tiktoken/-/tiktoken-1.0.2.tgz", + "integrity": "sha512-AjGTBRWsMoVmVeN55NLyupyM8TNamOUBl6tj5t/leLDVup3CFGO9tVagNL1jf3GyZLkWZSTmYVbPQ/M2LEcNzw==" + }, "@jimp/bmp": { "version": "0.22.7", "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.22.7.tgz", @@ -2258,6 +2345,21 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "axios": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.4.tgz", + "integrity": "sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==", + "requires": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -2357,6 +2459,14 @@ "get-intrinsic": "^1.0.2" } }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -2452,6 +2562,11 @@ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, "depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -2589,6 +2704,16 @@ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", @@ -3045,6 +3170,11 @@ } } }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", @@ -3133,6 +3263,14 @@ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, + "sanitize-filename": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", + "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", + "requires": { + "truncate-utf8-bytes": "^1.0.0" + } + }, "sax": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", @@ -3274,6 +3412,14 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, + "truncate-utf8-bytes": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", + "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", + "requires": { + "utf8-byte-length": "^1.0.1" + } + }, "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -3293,6 +3439,11 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, + "utf8-byte-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz", + "integrity": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==" + }, "utif2": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/utif2/-/utif2-4.0.1.tgz", diff --git a/package.json b/package.json index 0b61e5365..a69b31652 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,25 @@ { "dependencies": { + "@dqbd/tiktoken": "^1.0.2", + "axios": "^1.3.4", "cookie-parser": "^1.4.6", "cors": "^2.8.5", "csrf-csrf": "^2.2.3", "express": "^4.18.2", "ipaddr.js": "^2.0.1", "jimp": "^0.22.7", + "mime-types": "^2.1.35", "multer": "^1.4.5-lts.1", "node-rest-client": "^3.1.1", "open": "^8.4.0", "png-chunk-text": "^1.0.0", "png-chunks-encode": "^1.0.0", "png-chunks-extract": "^1.0.0", - "rimraf": "^3.0.2" + "rimraf": "^3.0.2", + "sanitize-filename": "^1.6.3" }, "name": "TavernAI", - "version": "1.1.0", + "version": "1.2.0", "bin": { "TavernAI": "server.js" }, diff --git a/public/KoboldAI Settings/RA - Pygmalion-1.3b.settings b/public/KoboldAI Settings/RA - Pygmalion-1.3b.settings new file mode 100644 index 000000000..21e56f75b --- /dev/null +++ b/public/KoboldAI Settings/RA - Pygmalion-1.3b.settings @@ -0,0 +1,46 @@ +{ + "file_version": 2, + "max_length": 1400, + "ikmax": 3000, + "genamt": 80, + "ikgen": 200, + "rep_pen": 1.04, + "rep_pen_slope": 0.0, + "rep_pen_range": 1400, + "temp": 1, + "top_p": 1, + "top_k": 0, + "top_a": 0.0, + "tfs": 0.97, + "typical": 1.0, + "numseqs": 1, + "fp32_model": false, + "modeldim": 2560, + "sampler_order": [ + 6, + 0, + 1, + 2, + 3, + 4, + 5 + ], + "newlinemode": "n", + "lazy_load": true, + "revision": null, + "selected_preset": "", + "horde_wait_time": 0, + "horde_queue_position": 0, + "horde_queue_size": 0, + "model": "pygmalion-1.3b", + "model_type": "gpt_neo", + "url": "https://api.inferkit.com/v1/models/standard/generate", + "oaiurl": "", + "oaiengines": "https://api.openai.com/v1/engines", + "colaburl": "/request", + "apikey": "", + "oaiapikey": "", + "configname": "pygmalion-1.3b", + "online_model": "", + "alt_multi_gen": false +} \ No newline at end of file diff --git a/public/OpenAI Settings/Default.settings b/public/OpenAI Settings/Default.settings new file mode 100644 index 000000000..8db809591 --- /dev/null +++ b/public/OpenAI Settings/Default.settings @@ -0,0 +1,5 @@ +{ + "temperature": 0.9, + "frequency_penalty": 0.7, + "presence_penalty": 0.7 +} \ No newline at end of file diff --git a/public/TextGen Settings/Beam Search.settings b/public/TextGen Settings/Beam Search.settings new file mode 100644 index 000000000..b18792954 --- /dev/null +++ b/public/TextGen Settings/Beam Search.settings @@ -0,0 +1,15 @@ +{ + "temp": 0.7, + "top_p": 0.92, + "top_k": 150, + "typical_p": 1, + "rep_pen": 4.5, + "no_repeat_ngram_size": 2, + "penalty_alpha": 0, + "num_beams": 10, + "length_penalty": 1.4, + "min_length": 200, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": true +} \ No newline at end of file diff --git a/public/TextGen Settings/Contrastive Search.settings b/public/TextGen Settings/Contrastive Search.settings new file mode 100644 index 000000000..f3d60d3dc --- /dev/null +++ b/public/TextGen Settings/Contrastive Search.settings @@ -0,0 +1,15 @@ +{ + "temp": 1, + "top_p": 1, + "top_k": 4, + "typical_p": 1, + "rep_pen": 1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0.6, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": false, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/Default.settings b/public/TextGen Settings/Default.settings new file mode 100644 index 000000000..6819df23e --- /dev/null +++ b/public/TextGen Settings/Default.settings @@ -0,0 +1,15 @@ +{ + "temp": 0.7, + "top_p": 0.5, + "top_k": 40, + "typical_p": 1, + "rep_pen": 1.2, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/Deterministic.settings b/public/TextGen Settings/Deterministic.settings new file mode 100644 index 000000000..2fdaf4635 --- /dev/null +++ b/public/TextGen Settings/Deterministic.settings @@ -0,0 +1,15 @@ +{ + "temp": 1, + "top_p": 1, + "top_k": 50, + "typical_p": 1, + "rep_pen": 1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": false, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/Kobold (Godlike).settings b/public/TextGen Settings/Kobold (Godlike).settings new file mode 100644 index 000000000..414309d88 --- /dev/null +++ b/public/TextGen Settings/Kobold (Godlike).settings @@ -0,0 +1,15 @@ +{ + "temp": 0.7, + "top_p": 0.5, + "top_k": 0, + "typical_p": 0.19, + "rep_pen": 1.1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/Kobold (Liminal Drift).settings b/public/TextGen Settings/Kobold (Liminal Drift).settings new file mode 100644 index 000000000..97c12f31e --- /dev/null +++ b/public/TextGen Settings/Kobold (Liminal Drift).settings @@ -0,0 +1,15 @@ +{ + "temp": 0.66, + "top_p": 1, + "top_k": 0, + "typical_p": 0.6, + "rep_pen": 1.1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/Naive.settings b/public/TextGen Settings/Naive.settings new file mode 100644 index 000000000..5df1914e1 --- /dev/null +++ b/public/TextGen Settings/Naive.settings @@ -0,0 +1,15 @@ +{ + "temp": 0.7, + "top_p": 0.85, + "top_k": 50, + "typical_p": 1, + "rep_pen": 1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Best Guess).settings b/public/TextGen Settings/NovelAI (Best Guess).settings new file mode 100644 index 000000000..91226d8e7 --- /dev/null +++ b/public/TextGen Settings/NovelAI (Best Guess).settings @@ -0,0 +1,15 @@ +{ + "temp": 0.8, + "top_p": 0.9, + "top_k": 100, + "typical_p": 1, + "rep_pen": 1.15, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Decadence).settings b/public/TextGen Settings/NovelAI (Decadence).settings new file mode 100644 index 000000000..04ccebcf0 --- /dev/null +++ b/public/TextGen Settings/NovelAI (Decadence).settings @@ -0,0 +1,15 @@ +{ + "temp": 1.99, + "top_p": 1, + "top_k": 100, + "typical_p": 0.97, + "rep_pen": 1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Genesis).settings b/public/TextGen Settings/NovelAI (Genesis).settings new file mode 100644 index 000000000..50c494210 --- /dev/null +++ b/public/TextGen Settings/NovelAI (Genesis).settings @@ -0,0 +1,15 @@ +{ + "temp": 0.63, + "top_p": 0.98, + "top_k": 0, + "typical_p": 1, + "rep_pen": 1.05, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Lycaenidae).settings b/public/TextGen Settings/NovelAI (Lycaenidae).settings new file mode 100644 index 000000000..895f01925 --- /dev/null +++ b/public/TextGen Settings/NovelAI (Lycaenidae).settings @@ -0,0 +1,15 @@ +{ + "temp": 1.99, + "top_p": 0.85, + "top_k": 12, + "typical_p": 1, + "rep_pen": 1.15, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Ouroboros).settings b/public/TextGen Settings/NovelAI (Ouroboros).settings new file mode 100644 index 000000000..2afa94ff2 --- /dev/null +++ b/public/TextGen Settings/NovelAI (Ouroboros).settings @@ -0,0 +1,15 @@ +{ + "temp": 1.07, + "top_p": 1, + "top_k": 100, + "typical_p": 1, + "rep_pen": 1.05, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Pleasing Results).settings b/public/TextGen Settings/NovelAI (Pleasing Results).settings new file mode 100644 index 000000000..c05674c1b --- /dev/null +++ b/public/TextGen Settings/NovelAI (Pleasing Results).settings @@ -0,0 +1,15 @@ +{ + "temp": 0.44, + "top_p": 1, + "top_k": 0, + "typical_p": 1, + "rep_pen": 1.15, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Sphinx Moth).settings b/public/TextGen Settings/NovelAI (Sphinx Moth).settings new file mode 100644 index 000000000..d04b4121c --- /dev/null +++ b/public/TextGen Settings/NovelAI (Sphinx Moth).settings @@ -0,0 +1,15 @@ +{ + "temp": 1.99, + "top_p": 0.18, + "top_k": 30, + "typical_p": 1, + "rep_pen": 1.15, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/NovelAI (Storywriter).settings b/public/TextGen Settings/NovelAI (Storywriter).settings new file mode 100644 index 000000000..c6deb27a8 --- /dev/null +++ b/public/TextGen Settings/NovelAI (Storywriter).settings @@ -0,0 +1,15 @@ +{ + "temp": 0.72, + "top_p": 0.73, + "top_k": 0, + "typical_p": 1, + "rep_pen": 1.1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/TextGen Settings/Pygmalion.settings b/public/TextGen Settings/Pygmalion.settings new file mode 100644 index 000000000..f29464c5b --- /dev/null +++ b/public/TextGen Settings/Pygmalion.settings @@ -0,0 +1,15 @@ +{ + "temp": 0.5, + "top_p": 0.9, + "top_k": 0, + "typical_p": 1, + "rep_pen": 1.1, + "no_repeat_ngram_size": 0, + "penalty_alpha": 0, + "num_beams": 1, + "length_penalty": 1, + "min_length": 0, + "encoder_rep_pen": 1, + "do_sample": true, + "early_stopping": false +} \ No newline at end of file diff --git a/public/backgrounds/TAI-cozynight.jpg b/public/backgrounds/TAI-cozynight.jpg new file mode 100644 index 000000000..1f2c09caf Binary files /dev/null and b/public/backgrounds/TAI-cozynight.jpg differ diff --git a/public/backgrounds/TAI-getrest.jpg b/public/backgrounds/TAI-getrest.jpg new file mode 100644 index 000000000..a721084ba Binary files /dev/null and b/public/backgrounds/TAI-getrest.jpg differ diff --git a/public/backgrounds/TAI-kingdom.jpg b/public/backgrounds/TAI-kingdom.jpg new file mode 100644 index 000000000..20933e8a2 Binary files /dev/null and b/public/backgrounds/TAI-kingdom.jpg differ diff --git a/public/backgrounds/TAI-market.jpg b/public/backgrounds/TAI-market.jpg new file mode 100644 index 000000000..7bf13c716 Binary files /dev/null and b/public/backgrounds/TAI-market.jpg differ diff --git a/public/backgrounds/TAI-noble1.jpg b/public/backgrounds/TAI-noble1.jpg new file mode 100644 index 000000000..8bf74677c Binary files /dev/null and b/public/backgrounds/TAI-noble1.jpg differ diff --git a/public/backgrounds/TAI-noble2.jpg b/public/backgrounds/TAI-noble2.jpg new file mode 100644 index 000000000..d127d57a3 Binary files /dev/null and b/public/backgrounds/TAI-noble2.jpg differ diff --git a/public/backgrounds/TAI-outdoor.jpg b/public/backgrounds/TAI-outdoor.jpg new file mode 100644 index 000000000..66ef9dfe0 Binary files /dev/null and b/public/backgrounds/TAI-outdoor.jpg differ diff --git a/public/backgrounds/TAI-tavern.jpg b/public/backgrounds/TAI-tavern.jpg new file mode 100644 index 000000000..a0af2cf82 Binary files /dev/null and b/public/backgrounds/TAI-tavern.jpg differ diff --git a/public/backgrounds/TAI-theredlake.jpg b/public/backgrounds/TAI-theredlake.jpg new file mode 100644 index 000000000..5f625a22b Binary files /dev/null and b/public/backgrounds/TAI-theredlake.jpg differ diff --git a/public/backgrounds/TAI-warmtown.jpg b/public/backgrounds/TAI-warmtown.jpg new file mode 100644 index 000000000..8f607d838 Binary files /dev/null and b/public/backgrounds/TAI-warmtown.jpg differ diff --git a/public/backgrounds/TAI-whitesnow.jpg b/public/backgrounds/TAI-whitesnow.jpg new file mode 100644 index 000000000..32e704e89 Binary files /dev/null and b/public/backgrounds/TAI-whitesnow.jpg differ diff --git a/public/backgrounds/__transparent.png b/public/backgrounds/__transparent.png new file mode 100644 index 000000000..909c66db1 Binary files /dev/null and b/public/backgrounds/__transparent.png differ diff --git a/public/backgrounds/_pattern-bokeh1.jpg b/public/backgrounds/_pattern-bokeh1.jpg new file mode 100644 index 000000000..fc9277142 Binary files /dev/null and b/public/backgrounds/_pattern-bokeh1.jpg differ diff --git a/public/backgrounds/_pattern-bokeh2.jpg b/public/backgrounds/_pattern-bokeh2.jpg new file mode 100644 index 000000000..7897643cf Binary files /dev/null and b/public/backgrounds/_pattern-bokeh2.jpg differ diff --git a/public/backgrounds/_pattern.jpg b/public/backgrounds/_pattern.jpg new file mode 100644 index 000000000..26892a2a9 Binary files /dev/null and b/public/backgrounds/_pattern.jpg differ diff --git a/public/backgrounds/barmodern.jpg b/public/backgrounds/barmodern.jpg new file mode 100644 index 000000000..557f235c0 Binary files /dev/null and b/public/backgrounds/barmodern.jpg differ diff --git a/public/backgrounds/beach1.jpg b/public/backgrounds/beach1.jpg new file mode 100644 index 000000000..23284cd50 Binary files /dev/null and b/public/backgrounds/beach1.jpg differ diff --git a/public/backgrounds/beach2.jpg b/public/backgrounds/beach2.jpg new file mode 100644 index 000000000..61a8b2c90 Binary files /dev/null and b/public/backgrounds/beach2.jpg differ diff --git a/public/backgrounds/bedroom1.jpg b/public/backgrounds/bedroom1.jpg new file mode 100644 index 000000000..40d15bf4f Binary files /dev/null and b/public/backgrounds/bedroom1.jpg differ diff --git a/public/backgrounds/bedroom2.jpg b/public/backgrounds/bedroom2.jpg new file mode 100644 index 000000000..da0b640cc Binary files /dev/null and b/public/backgrounds/bedroom2.jpg differ diff --git a/public/backgrounds/bedroom4.jpg b/public/backgrounds/bedroom4.jpg new file mode 100644 index 000000000..1cd6e112a Binary files /dev/null and b/public/backgrounds/bedroom4.jpg differ diff --git a/public/backgrounds/bedroom5.jpg b/public/backgrounds/bedroom5.jpg new file mode 100644 index 000000000..67ddc843d Binary files /dev/null and b/public/backgrounds/bedroom5.jpg differ diff --git a/public/backgrounds/classroom1.jpg b/public/backgrounds/classroom1.jpg new file mode 100644 index 000000000..b2c76a9b6 Binary files /dev/null and b/public/backgrounds/classroom1.jpg differ diff --git a/public/backgrounds/classroom3.jpg b/public/backgrounds/classroom3.jpg new file mode 100644 index 000000000..f62aad527 Binary files /dev/null and b/public/backgrounds/classroom3.jpg differ diff --git a/public/backgrounds/classroom4.jpg b/public/backgrounds/classroom4.jpg new file mode 100644 index 000000000..f1549166a Binary files /dev/null and b/public/backgrounds/classroom4.jpg differ diff --git a/public/backgrounds/classroom5.jpg b/public/backgrounds/classroom5.jpg new file mode 100644 index 000000000..581e9b5c1 Binary files /dev/null and b/public/backgrounds/classroom5.jpg differ diff --git a/public/backgrounds/cozynight.jpg b/public/backgrounds/cozynight.jpg deleted file mode 100644 index ce1391a4c..000000000 Binary files a/public/backgrounds/cozynight.jpg and /dev/null differ diff --git a/public/backgrounds/cyberpunkbedroom.jpg b/public/backgrounds/cyberpunkbedroom.jpg new file mode 100644 index 000000000..9b95e2062 Binary files /dev/null and b/public/backgrounds/cyberpunkbedroom.jpg differ diff --git a/public/backgrounds/cyberpunkbedroom2.jpg b/public/backgrounds/cyberpunkbedroom2.jpg new file mode 100644 index 000000000..6468e6894 Binary files /dev/null and b/public/backgrounds/cyberpunkbedroom2.jpg differ diff --git a/public/backgrounds/cyberpunkcity.jpg b/public/backgrounds/cyberpunkcity.jpg new file mode 100644 index 000000000..5766d134c Binary files /dev/null and b/public/backgrounds/cyberpunkcity.jpg differ diff --git a/public/backgrounds/cyberpunkstreet.jpg b/public/backgrounds/cyberpunkstreet.jpg new file mode 100644 index 000000000..67a2d771b Binary files /dev/null and b/public/backgrounds/cyberpunkstreet.jpg differ diff --git a/public/backgrounds/fantasycity.jpg b/public/backgrounds/fantasycity.jpg new file mode 100644 index 000000000..1b13b496d Binary files /dev/null and b/public/backgrounds/fantasycity.jpg differ diff --git a/public/backgrounds/fantasycity2.jpg b/public/backgrounds/fantasycity2.jpg new file mode 100644 index 000000000..792ebcc4b Binary files /dev/null and b/public/backgrounds/fantasycity2.jpg differ diff --git a/public/backgrounds/fantasylandscape.jpg b/public/backgrounds/fantasylandscape.jpg new file mode 100644 index 000000000..5c242d585 Binary files /dev/null and b/public/backgrounds/fantasylandscape.jpg differ diff --git a/public/backgrounds/fantasylandscape3.jpg b/public/backgrounds/fantasylandscape3.jpg new file mode 100644 index 000000000..82b92778c Binary files /dev/null and b/public/backgrounds/fantasylandscape3.jpg differ diff --git a/public/backgrounds/fantasylandscape4.jpg b/public/backgrounds/fantasylandscape4.jpg new file mode 100644 index 000000000..9e8d82546 Binary files /dev/null and b/public/backgrounds/fantasylandscape4.jpg differ diff --git a/public/backgrounds/fantasylandscape5.jpg b/public/backgrounds/fantasylandscape5.jpg new file mode 100644 index 000000000..1d763c65b Binary files /dev/null and b/public/backgrounds/fantasylandscape5.jpg differ diff --git a/public/backgrounds/fantasylandscaperiver.jpg b/public/backgrounds/fantasylandscaperiver.jpg new file mode 100644 index 000000000..54283d21b Binary files /dev/null and b/public/backgrounds/fantasylandscaperiver.jpg differ diff --git a/public/backgrounds/fantasylandscapesakura.jpg b/public/backgrounds/fantasylandscapesakura.jpg new file mode 100644 index 000000000..1d6c553d3 Binary files /dev/null and b/public/backgrounds/fantasylandscapesakura.jpg differ diff --git a/public/backgrounds/fantasylandscapesakura2.jpg b/public/backgrounds/fantasylandscapesakura2.jpg new file mode 100644 index 000000000..267478cef Binary files /dev/null and b/public/backgrounds/fantasylandscapesakura2.jpg differ diff --git a/public/backgrounds/fantasytemplesakura.jpg b/public/backgrounds/fantasytemplesakura.jpg new file mode 100644 index 000000000..b8f7ee584 Binary files /dev/null and b/public/backgrounds/fantasytemplesakura.jpg differ diff --git a/public/backgrounds/getrest.jpg b/public/backgrounds/getrest.jpg deleted file mode 100644 index f69db9732..000000000 Binary files a/public/backgrounds/getrest.jpg and /dev/null differ diff --git a/public/backgrounds/hellscape1.jpg b/public/backgrounds/hellscape1.jpg new file mode 100644 index 000000000..ff4fff42c Binary files /dev/null and b/public/backgrounds/hellscape1.jpg differ diff --git a/public/backgrounds/hellscape2.jpg b/public/backgrounds/hellscape2.jpg new file mode 100644 index 000000000..63fceab90 Binary files /dev/null and b/public/backgrounds/hellscape2.jpg differ diff --git a/public/backgrounds/hellscape3.jpg b/public/backgrounds/hellscape3.jpg new file mode 100644 index 000000000..42da14151 Binary files /dev/null and b/public/backgrounds/hellscape3.jpg differ diff --git a/public/backgrounds/hellscape4.jpg b/public/backgrounds/hellscape4.jpg new file mode 100644 index 000000000..1c686c916 Binary files /dev/null and b/public/backgrounds/hellscape4.jpg differ diff --git a/public/backgrounds/kingdom.jpg b/public/backgrounds/kingdom.jpg deleted file mode 100644 index cc62e6ab3..000000000 Binary files a/public/backgrounds/kingdom.jpg and /dev/null differ diff --git a/public/backgrounds/market.jpg b/public/backgrounds/market.jpg deleted file mode 100644 index e8d443132..000000000 Binary files a/public/backgrounds/market.jpg and /dev/null differ diff --git a/public/backgrounds/market2.jpg b/public/backgrounds/market2.jpg new file mode 100644 index 000000000..6a0f1b97a Binary files /dev/null and b/public/backgrounds/market2.jpg differ diff --git a/public/backgrounds/nightclub.jpg b/public/backgrounds/nightclub.jpg new file mode 100644 index 000000000..0d411937f Binary files /dev/null and b/public/backgrounds/nightclub.jpg differ diff --git a/public/backgrounds/noble1.jpg b/public/backgrounds/noble1.jpg deleted file mode 100644 index d21139ac4..000000000 Binary files a/public/backgrounds/noble1.jpg and /dev/null differ diff --git a/public/backgrounds/noble2.jpg b/public/backgrounds/noble2.jpg deleted file mode 100644 index b88da45a5..000000000 Binary files a/public/backgrounds/noble2.jpg and /dev/null differ diff --git a/public/backgrounds/outdoor.jpg b/public/backgrounds/outdoor.jpg deleted file mode 100644 index 360bca62b..000000000 Binary files a/public/backgrounds/outdoor.jpg and /dev/null differ diff --git a/public/backgrounds/post-apoc1.jpg b/public/backgrounds/post-apoc1.jpg new file mode 100644 index 000000000..490c79c2d Binary files /dev/null and b/public/backgrounds/post-apoc1.jpg differ diff --git a/public/backgrounds/post-apoc2.jpg b/public/backgrounds/post-apoc2.jpg new file mode 100644 index 000000000..1bd30b721 Binary files /dev/null and b/public/backgrounds/post-apoc2.jpg differ diff --git a/public/backgrounds/post-apoc3.jpg b/public/backgrounds/post-apoc3.jpg new file mode 100644 index 000000000..598db1e7c Binary files /dev/null and b/public/backgrounds/post-apoc3.jpg differ diff --git a/public/backgrounds/post-apoc4.jpg b/public/backgrounds/post-apoc4.jpg new file mode 100644 index 000000000..42d1512d8 Binary files /dev/null and b/public/backgrounds/post-apoc4.jpg differ diff --git a/public/backgrounds/post-apoc5.jpg b/public/backgrounds/post-apoc5.jpg new file mode 100644 index 000000000..e3f1500fa Binary files /dev/null and b/public/backgrounds/post-apoc5.jpg differ diff --git a/public/backgrounds/post-apoc6.jpg b/public/backgrounds/post-apoc6.jpg new file mode 100644 index 000000000..a1aa1d50b Binary files /dev/null and b/public/backgrounds/post-apoc6.jpg differ diff --git a/public/backgrounds/redlight.jpg b/public/backgrounds/redlight.jpg new file mode 100644 index 000000000..9171d87ce Binary files /dev/null and b/public/backgrounds/redlight.jpg differ diff --git a/public/backgrounds/redlight2.jpg b/public/backgrounds/redlight2.jpg new file mode 100644 index 000000000..2df5f37e4 Binary files /dev/null and b/public/backgrounds/redlight2.jpg differ diff --git a/public/backgrounds/redlight3.jpg b/public/backgrounds/redlight3.jpg new file mode 100644 index 000000000..64ca31ff0 Binary files /dev/null and b/public/backgrounds/redlight3.jpg differ diff --git a/public/backgrounds/redlight4.jpg b/public/backgrounds/redlight4.jpg new file mode 100644 index 000000000..ac81d494c Binary files /dev/null and b/public/backgrounds/redlight4.jpg differ diff --git a/public/backgrounds/smokycity.jpg b/public/backgrounds/smokycity.jpg deleted file mode 100644 index d2ab9bf95..000000000 Binary files a/public/backgrounds/smokycity.jpg and /dev/null differ diff --git a/public/backgrounds/tatamiroom.jpg b/public/backgrounds/tatamiroom.jpg new file mode 100644 index 000000000..383bef0ea Binary files /dev/null and b/public/backgrounds/tatamiroom.jpg differ diff --git a/public/backgrounds/tatamiroom2.jpg b/public/backgrounds/tatamiroom2.jpg new file mode 100644 index 000000000..255e67866 Binary files /dev/null and b/public/backgrounds/tatamiroom2.jpg differ diff --git a/public/backgrounds/tavern.jpg b/public/backgrounds/tavern.jpg deleted file mode 100644 index 5d5babf28..000000000 Binary files a/public/backgrounds/tavern.jpg and /dev/null differ diff --git a/public/backgrounds/tavern1.jpg b/public/backgrounds/tavern1.jpg new file mode 100644 index 000000000..10c5cf0a2 Binary files /dev/null and b/public/backgrounds/tavern1.jpg differ diff --git a/public/backgrounds/tavern2.jpg b/public/backgrounds/tavern2.jpg new file mode 100644 index 000000000..26f19c473 Binary files /dev/null and b/public/backgrounds/tavern2.jpg differ diff --git a/public/backgrounds/tavern3.jpg b/public/backgrounds/tavern3.jpg new file mode 100644 index 000000000..3a219f8c8 Binary files /dev/null and b/public/backgrounds/tavern3.jpg differ diff --git a/public/backgrounds/tavern5.jpg b/public/backgrounds/tavern5.jpg new file mode 100644 index 000000000..d010d84c9 Binary files /dev/null and b/public/backgrounds/tavern5.jpg differ diff --git a/public/backgrounds/theredlake.jpg b/public/backgrounds/theredlake.jpg deleted file mode 100644 index d3a63edbe..000000000 Binary files a/public/backgrounds/theredlake.jpg and /dev/null differ diff --git a/public/backgrounds/university1.jpg b/public/backgrounds/university1.jpg new file mode 100644 index 000000000..92e45637e Binary files /dev/null and b/public/backgrounds/university1.jpg differ diff --git a/public/backgrounds/university2.jpg b/public/backgrounds/university2.jpg new file mode 100644 index 000000000..b1e306eca Binary files /dev/null and b/public/backgrounds/university2.jpg differ diff --git a/public/backgrounds/university3.jpg b/public/backgrounds/university3.jpg new file mode 100644 index 000000000..3f127e89e Binary files /dev/null and b/public/backgrounds/university3.jpg differ diff --git a/public/backgrounds/warmtown.jpg b/public/backgrounds/warmtown.jpg deleted file mode 100644 index f92b98edf..000000000 Binary files a/public/backgrounds/warmtown.jpg and /dev/null differ diff --git a/public/backgrounds/whitesnow.jpg b/public/backgrounds/whitesnow.jpg deleted file mode 100644 index 0d9db43cc..000000000 Binary files a/public/backgrounds/whitesnow.jpg and /dev/null differ diff --git a/public/css/bg_load.css b/public/css/bg_load.css index 722e2377d..686c72821 100644 --- a/public/css/bg_load.css +++ b/public/css/bg_load.css @@ -1 +1 @@ -#bg1 {background-image: url(../backgrounds/tavern.jpg);} \ No newline at end of file +#bg1 {background-image: url(../backgrounds/tavern3.jpg);} diff --git a/public/img/No-Image-Placeholder.svg b/public/img/No-Image-Placeholder.svg new file mode 100644 index 000000000..d21137506 --- /dev/null +++ b/public/img/No-Image-Placeholder.svg @@ -0,0 +1,309 @@ + + diff --git a/public/img/addbg3.png b/public/img/addbg3.png index a92e09c93..1b7dd7113 100644 Binary files a/public/img/addbg3.png and b/public/img/addbg3.png differ diff --git a/public/img/address-book-solid.svg b/public/img/address-book-solid.svg new file mode 100644 index 000000000..823632c96 --- /dev/null +++ b/public/img/address-book-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/ai4.png b/public/img/ai4.png index e4d8457b2..a41de2da4 100644 Binary files a/public/img/ai4.png and b/public/img/ai4.png differ diff --git a/public/img/book-atlas-solid.svg b/public/img/book-atlas-solid.svg new file mode 100644 index 000000000..3b955b9aa --- /dev/null +++ b/public/img/book-atlas-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/bookmark-solid.svg b/public/img/bookmark-solid.svg new file mode 100644 index 000000000..8b37d3d8e --- /dev/null +++ b/public/img/bookmark-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/check-solid.svg b/public/img/check-solid.svg new file mode 100644 index 000000000..ba7a20b70 --- /dev/null +++ b/public/img/check-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/chevron-down-solid.svg b/public/img/chevron-down-solid.svg new file mode 100644 index 000000000..1df837cc6 --- /dev/null +++ b/public/img/chevron-down-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/chevron-up-solid.svg b/public/img/chevron-up-solid.svg new file mode 100644 index 000000000..60e444917 --- /dev/null +++ b/public/img/chevron-up-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/cloud_logo.png b/public/img/cloud_logo.png deleted file mode 100644 index 4f280011d..000000000 Binary files a/public/img/cloud_logo.png and /dev/null differ diff --git a/public/img/comment-dots-solid.svg b/public/img/comment-dots-solid.svg new file mode 100644 index 000000000..22ebd04e2 --- /dev/null +++ b/public/img/comment-dots-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/comment-medical-solid.svg b/public/img/comment-medical-solid.svg new file mode 100644 index 000000000..305c31f69 --- /dev/null +++ b/public/img/comment-medical-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/copy-solid.svg b/public/img/copy-solid.svg new file mode 100644 index 000000000..bc123e3c2 --- /dev/null +++ b/public/img/copy-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/cross.png b/public/img/cross.png index 6943df091..85a663ebd 100644 Binary files a/public/img/cross.png and b/public/img/cross.png differ diff --git a/public/img/del_mes.png b/public/img/del_mes.png index 7aad5f472..6d9f6c2b3 100644 Binary files a/public/img/del_mes.png and b/public/img/del_mes.png differ diff --git a/public/img/donut.png b/public/img/donut.png deleted file mode 100644 index fed1cbb1c..000000000 Binary files a/public/img/donut.png and /dev/null differ diff --git a/public/img/eth.png b/public/img/eth.png deleted file mode 100644 index 65cf41119..000000000 Binary files a/public/img/eth.png and /dev/null differ diff --git a/public/img/eth_icon.png b/public/img/eth_icon.png deleted file mode 100644 index 835831e61..000000000 Binary files a/public/img/eth_icon.png and /dev/null differ diff --git a/public/img/face-smile-regular.svg b/public/img/face-smile-regular.svg new file mode 100644 index 000000000..54cbe7127 --- /dev/null +++ b/public/img/face-smile-regular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/fluffy.png b/public/img/fluffy.png deleted file mode 100644 index 3e6d05bd0..000000000 Binary files a/public/img/fluffy.png and /dev/null differ diff --git a/public/img/font-solid.svg b/public/img/font-solid.svg new file mode 100644 index 000000000..0b0908b1f --- /dev/null +++ b/public/img/font-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/for_chloe_speech1.png b/public/img/for_chloe_speech1.png deleted file mode 100644 index d7e235b39..000000000 Binary files a/public/img/for_chloe_speech1.png and /dev/null differ diff --git a/public/img/for_chloe_speech2.png b/public/img/for_chloe_speech2.png deleted file mode 100644 index a62f2f2b2..000000000 Binary files a/public/img/for_chloe_speech2.png and /dev/null differ diff --git a/public/img/kobold.png b/public/img/kobold.png deleted file mode 100644 index 914871155..000000000 Binary files a/public/img/kobold.png and /dev/null differ diff --git a/public/img/list-ul-solid.svg b/public/img/list-ul-solid.svg new file mode 100644 index 000000000..223be9bcf --- /dev/null +++ b/public/img/list-ul-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/load2.gif b/public/img/load2.gif deleted file mode 100644 index 38686b5df..000000000 Binary files a/public/img/load2.gif and /dev/null differ diff --git a/public/img/load4.gif b/public/img/load4.gif deleted file mode 100644 index f883f8c91..000000000 Binary files a/public/img/load4.gif and /dev/null differ diff --git a/public/img/loadsd.webp b/public/img/loadsd.webp deleted file mode 100644 index 1ec3b3540..000000000 Binary files a/public/img/loadsd.webp and /dev/null differ diff --git a/public/img/logo.clip b/public/img/logo.clip deleted file mode 100644 index c1f0e18ef..000000000 Binary files a/public/img/logo.clip and /dev/null differ diff --git a/public/img/logo.png b/public/img/logo.png deleted file mode 100644 index 2fd70b40a..000000000 Binary files a/public/img/logo.png and /dev/null differ diff --git a/public/img/novelai.png b/public/img/novelai.png deleted file mode 100644 index 2eb1b636a..000000000 Binary files a/public/img/novelai.png and /dev/null differ diff --git a/public/img/options.png b/public/img/options.png deleted file mode 100644 index 1ba05cbeb..000000000 Binary files a/public/img/options.png and /dev/null differ diff --git a/public/img/options2.png b/public/img/options2.png deleted file mode 100644 index 9fef3ae81..000000000 Binary files a/public/img/options2.png and /dev/null differ diff --git a/public/img/panorama-solid.svg b/public/img/panorama-solid.svg new file mode 100644 index 000000000..f6df27506 --- /dev/null +++ b/public/img/panorama-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/pencil-solid.svg b/public/img/pencil-solid.svg new file mode 100644 index 000000000..a87d8da88 --- /dev/null +++ b/public/img/pencil-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/plug-circle-exclamation-solid.svg b/public/img/plug-circle-exclamation-solid.svg new file mode 100644 index 000000000..cb20178ab --- /dev/null +++ b/public/img/plug-circle-exclamation-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/plug-solid.svg b/public/img/plug-solid.svg new file mode 100644 index 000000000..d80710780 --- /dev/null +++ b/public/img/plug-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/regenerate.png b/public/img/regenerate.png index 566046dd0..0ca763067 100644 Binary files a/public/img/regenerate.png and b/public/img/regenerate.png differ diff --git a/public/img/repeat-solid.svg b/public/img/repeat-solid.svg new file mode 100644 index 000000000..139b542cb --- /dev/null +++ b/public/img/repeat-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/save_and_start_new_chat.png b/public/img/save_and_start_new_chat.png deleted file mode 100644 index 328224224..000000000 Binary files a/public/img/save_and_start_new_chat.png and /dev/null differ diff --git a/public/img/scissors-solid.svg b/public/img/scissors-solid.svg new file mode 100644 index 000000000..9954eb7cc --- /dev/null +++ b/public/img/scissors-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/scroll.png b/public/img/scroll.png deleted file mode 100644 index 22e3513e8..000000000 Binary files a/public/img/scroll.png and /dev/null differ diff --git a/public/img/send.png b/public/img/send.png deleted file mode 100644 index a2ac31d2a..000000000 Binary files a/public/img/send.png and /dev/null differ diff --git a/public/img/send2.png b/public/img/send2.png deleted file mode 100644 index f6c36c972..000000000 Binary files a/public/img/send2.png and /dev/null differ diff --git a/public/img/send3.png b/public/img/send3.png index 4f5bb69ce..e1b47a884 100644 Binary files a/public/img/send3.png and b/public/img/send3.png differ diff --git a/public/img/sliders-solid.svg b/public/img/sliders-solid.svg new file mode 100644 index 000000000..403c19e06 --- /dev/null +++ b/public/img/sliders-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/tri.png b/public/img/tri.png deleted file mode 100644 index a966b6cf8..000000000 Binary files a/public/img/tri.png and /dev/null differ diff --git a/public/img/usdt.png b/public/img/usdt.png deleted file mode 100644 index fc3dc4712..000000000 Binary files a/public/img/usdt.png and /dev/null differ diff --git a/public/img/user-group-solidplus.svg b/public/img/user-group-solidplus.svg new file mode 100644 index 000000000..14cf30559 --- /dev/null +++ b/public/img/user-group-solidplus.svg @@ -0,0 +1,41 @@ + + diff --git a/public/img/wifi-solid.svg b/public/img/wifi-solid.svg new file mode 100644 index 000000000..ae7f9db25 --- /dev/null +++ b/public/img/wifi-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/xmark-solid.svg b/public/img/xmark-solid.svg new file mode 100644 index 000000000..8c1b1bcff --- /dev/null +++ b/public/img/xmark-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/img/you.png b/public/img/you.png index 9f9291f15..e68db438d 100644 Binary files a/public/img/you.png and b/public/img/you.png differ diff --git a/public/img/you1.png b/public/img/you1.png deleted file mode 100644 index e241153a4..000000000 Binary files a/public/img/you1.png and /dev/null differ diff --git a/public/index.html b/public/index.html index 6db53bdec..acb4bcab4 100644 --- a/public/index.html +++ b/public/index.html @@ -3,7 +3,7 @@
- + @@ -22,41 +22,1070 @@ + - - - + - + +