diff --git a/.github/readme.md b/.github/readme.md index bd371ab7c..ff18c9833 100644 --- a/.github/readme.md +++ b/.github/readme.md @@ -6,7 +6,7 @@ Based on a fork of TavernAI 1.2.8 ### Brought to you by Cohee, RossAscends and the SillyTavern community -NOTE: We have added [a FAQ](faq.md) to answer most of your questions and help you get started. +NOTE: We have created a [Documentation website](https://docs.sillytavern.app/) to answer most of your questions and help you get started. ### What is SillyTavern or TavernAI? @@ -16,7 +16,7 @@ SillyTavern is a fork of TavernAI 1.2.8 which is under more active development a ### What do I need other than Tavern? -On its own Tavern is useless, as it's just a user interface. You have to have access to an AI system backend that can act as the roleplay character. There are various supported backends: OpenAPI API (GPT), KoboldAI (either running locally or on Google Colab), and more. You can read more about this in [the FAQ](faq.md). +On its own Tavern is useless, as it's just a user interface. You have to have access to an AI system backend that can act as the roleplay character. There are various supported backends: OpenAPI API (GPT), KoboldAI (either running locally or on Google Colab), and more. You can read more about this in [the FAQ](https://docs.sillytavern.app/usage/faq/). ### Do I need a powerful PC to run Tavern? diff --git a/server.js b/server.js index fb4a9d0e1..c39dcae08 100644 --- a/server.js +++ b/server.js @@ -311,12 +311,6 @@ app.get("/", function (request, response) { app.get("/notes/*", function (request, response) { response.sendFile(process.cwd() + "/public" + request.url + ".html"); }); -app.get('/get_faq', function (_, response) { - response.sendFile(process.cwd() + "/faq.md"); -}); -app.get('/get_readme', function (_, response) { - response.sendFile(process.cwd() + "/readme.md"); -}); app.get('/deviceinfo', function (request, response) { const userAgent = request.header('user-agent'); const deviceDetector = new DeviceDetector();