mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
added styles to Notes pages.
This commit is contained in:
@@ -1,12 +1,46 @@
|
||||
|
||||
|
||||
#main{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding:0;
|
||||
width: 100%;
|
||||
background-color: rgb(36, 37, 37);
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-size: cover;
|
||||
font-family: "Noto Sans", "Noto Color Emoji", sans-serif;
|
||||
font-size:16px; /*1rem*/
|
||||
color: #999;
|
||||
box-sizing: border-box;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
/*z-index:0;*/
|
||||
}
|
||||
#content{
|
||||
margin-left: 6px;
|
||||
max-width: 700px;
|
||||
|
||||
}
|
||||
#main {
|
||||
padding-top: 20px;
|
||||
/*z-index:1;*/
|
||||
}
|
||||
|
||||
#content{
|
||||
margin: 0 auto;
|
||||
max-width: 700px;
|
||||
border: 1px solid #333;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
line-height: 1.5rem;
|
||||
box-shadow: 0 0 5px black;
|
||||
/*z-index: 2;*/
|
||||
}
|
||||
|
||||
code {
|
||||
border: 1px solid #999;
|
||||
background-color: rgba(0,0,0,0.5);
|
||||
padding: 5px;
|
||||
border-radius:5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
a {color: orange; text-decoration:none; border-bottom: 1px dotted orange; }
|
||||
h2, h3 {margin: 0; color:#ccc;}
|
||||
hr {border: 1px solid #999;}
|
@@ -1,27 +1,44 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Description character</title>
|
||||
<title>TavernAI - Note - Character Derscriptions</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Character description</h2>
|
||||
<p>Used to add the character description and the rest that the AI should
|
||||
know. For example, you can add information about the world in which the action takes place and describe
|
||||
the characteristics for the character you are playing for. Usually it all takes 200-350 tokens.</p>
|
||||
<p>
|
||||
Used to add the character description and the rest that the AI should know.<br><br>
|
||||
For example, you can add information about the world in which the action takes place and describe
|
||||
the characteristics for the character you are playing for.<br><br>
|
||||
Usually it all takes 200-350 tokens.
|
||||
</p>
|
||||
<h3>Methods and format</h3>
|
||||
<p>For most Kobold's models the easiest way is to use a free form for description, and in each sentence it is desirable to specify the name of the character.
|
||||
The entire description should be in one line without hyphenation. For examle:<br><br>
|
||||
<i>Chloe is a female elf. Chloe wears black-white maid dress with green collar and red glasses. Chloe has medium length black hair.
|
||||
Chloe's personality is...</i> etc.</p>
|
||||
<p>
|
||||
For most Kobold's models the easiest way is to use a free form for description, and in each sentence it is desirable to specify the name of the character.<br><br>
|
||||
The entire description should be in one line without hyphenation.<br><br>
|
||||
For examle:<br><br>
|
||||
<code>
|
||||
Chloe is a female elf. Chloe wears black-white maid dress with green collar and red glasses. Chloe has medium length black hair. Chloe's personality is...
|
||||
</code>
|
||||
</p>
|
||||
|
||||
<p>But that the AI would be less confused the best way is to use the W++ format. Details here: <a target="_blank" href="https://github.com/KoboldAI/KoboldAI-Client/wiki/Pro-Tips">Pro-Tips</a></p>
|
||||
<hr><br>A list of tags that are replaced when sending to generate:<br><br>
|
||||
{{user}} and <USER> are replaced by User Name<br>
|
||||
{{char}} and <BOT> are replaced by Character Name
|
||||
<p>
|
||||
But that the AI would be less confused the best way is to use the W++ format.<Br><br>
|
||||
Details here: <a target="_blank" href="https://github.com/KoboldAI/KoboldAI-Client/wiki/Pro-Tips">Pro-Tips</a>
|
||||
</p>
|
||||
<hr>
|
||||
<br>
|
||||
<p>
|
||||
<u>A list of tags that are replaced when sending to generate:</u><br><br>
|
||||
{{user}} and <USER> : replaced by the User's Name<br>
|
||||
{{char}} and <BOT> : replaced by the Character's Name
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,9 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Chat import</title>
|
||||
<title>TavernAI - Note - Import Chat</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
|
@@ -1,9 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Examples of dialogue</title>
|
||||
<title>TavernAI - Note - Example Dialogues</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
|
@@ -1,18 +1,26 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Scenario</title>
|
||||
<title>TavernAI - Note - Scenario</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Scenario</h2>
|
||||
<p>Circumstances and context of the dialogue.</p>
|
||||
<hr><br>A list of tags that are replaced when sending to generate:<br><br>
|
||||
{{user}} and <USER> are replaced by User Name<br>
|
||||
{{char}} and <BOT> are replaced by Character Name<br><br>
|
||||
<p>
|
||||
Circumstances and context of the dialogue.
|
||||
</p>
|
||||
<hr>
|
||||
<p>
|
||||
<u>A list of tags that are replaced when sending to generate:</u><br><br>
|
||||
{{user}} and <USER> : replaced by User Name<br>
|
||||
{{char}} and <BOT> : replaced by Character Name<br><br>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,23 +1,37 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Personality</title>
|
||||
<title>TavernAI - Note - Personality Summary</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Personality summary</h2>
|
||||
<p>A brief description of the personality. It is added to the chat to a depth of 8-15 messages, so it has a significant impact on the character. Example:<br><br>
|
||||
<i>Cheerful, cunning, provocative</i><br><br>
|
||||
Another example:<br><br>
|
||||
<i>Aqua likes to do nothing and also likes to get drunk</i>
|
||||
</p>
|
||||
<p>
|
||||
A brief description of the personality. It is added to the chat to a depth of 8-15 messages, so it has a significant impact on the character.
|
||||
</p>
|
||||
|
||||
Example:
|
||||
<br><br>
|
||||
<code>Cheerful, cunning, provocative</code>
|
||||
<Br>
|
||||
Another example:
|
||||
<br><br>
|
||||
<code>Aqua likes to do nothing and also likes to get drunk</code>
|
||||
|
||||
<p>*In Pygmalion model, it is used as a "Personality:" graph</p>
|
||||
<hr><br>A list of tags that are replaced when sending to generate:<br><br>
|
||||
{{user}} and <USER> are replaced by User Name<br>
|
||||
{{char}} and <BOT> are replaced by Character Name<br><br>
|
||||
<hr>
|
||||
|
||||
<p>
|
||||
<u>List of tags that are replaced when sending to generate:</u><br><br>
|
||||
{{user}} and <USER> : replaced by the User's Name<br>
|
||||
{{char}} and <BOT> : replaced by the Character's Name<br><br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -1,22 +1,36 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>First message</title>
|
||||
<title>TavernAI - Note - First Message</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>First message</h2>
|
||||
<p>An important thing that sets exactly how and in what style the character will communicate.
|
||||
It is desirable that the character's first message be long, so that later it would be less
|
||||
likely that the character would respond in monosyllables. You can also use asterisks ** to describe the character's actions. For example:<br><br>
|
||||
<i>*I noticed you came inside, I walked up and stood right in front of you* Wellcome. I'm glad to see you here. *i said with toothy smug sunny smile looking you straight in the eye* What brings you...</i> etc
|
||||
</p>
|
||||
<hr><br>A list of tags that are replaced when sending to generate:<br><br>
|
||||
{{user}} and <USER> are replaced by User Name<br>
|
||||
{{char}} and <BOT> are replaced by Character Name<br><br>
|
||||
<p>
|
||||
The First Message is an important thing that sets exactly how and in what style the character will communicate.<Br><br>
|
||||
It is desirable that the character's first message be long, so that later it would be less likely that the character would respond in with very short messages. <br><br>
|
||||
You can also use asterisks ** to describe the character's actions.
|
||||
</P>
|
||||
|
||||
For example:
|
||||
<br><br>
|
||||
<code>
|
||||
*I noticed you came inside, I walked up and stood right in front of you* Wellcome. I'm glad to see you here.
|
||||
*i said with toothy smug sunny smile looking you straight in the eye* What brings you...
|
||||
</code>
|
||||
<Br>
|
||||
<hr>
|
||||
<p>
|
||||
A list of tags that are replaced when sending to generate:<br><br>
|
||||
{{user}} and <USER> are replaced by User Name<br>
|
||||
{{char}} and <BOT> are replaced by Character Name<br><br>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,9 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>KoboldAI Settings</title>
|
||||
<title>TavernAI - Note - KobolAI Settings</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
|
@@ -1,15 +1,22 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Temperature</title>
|
||||
<title>TavernAI - Note - Temperature</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Temperature</h2>
|
||||
<p>Value from 0.1 to 2.0. Less value - the answers are more logical, but less creative. More value - the answers are more creative, but less logical.</p>
|
||||
<p>
|
||||
Value from 0.1 to 2.0.<br><br>
|
||||
Less value - the answers are more logical, but less creative.<Br><br>
|
||||
More value - the answers are more creative, but less logical.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,27 +1,32 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>NovelAI api key</title>
|
||||
<title>TavernAI - Note - Novel AI API Key</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Finding your NAI API key</h2>
|
||||
<h4>To get a NovelAI API key, follow these instructions:</h4>
|
||||
<p>
|
||||
1. Go to the NovelAI website and Login.<br><br>
|
||||
|
||||
1. Login to NovelAI through the website.<br><br>
|
||||
2. Create a new story, or open an existing story.<br><br>
|
||||
|
||||
2. Create a new story, or open an existing story.<br><br>
|
||||
3. Open the Network Tools on your web browser. (For Chrome or Firefox, you do this by pressing Ctrl+Shift+I, then switching to the Network tab.)<br><br>
|
||||
|
||||
3. Open the Network Tools on your web browser. (For Chrome or Firefox, you do this by pressing Ctrl+Shift+I, then switching to the Network tab.)<br><br>
|
||||
|
||||
4. Generate something. You should see two requests to api.novelai.net/ai/generate-stream, which might look something like this:</p>
|
||||
<img src="1.png"><br><br>
|
||||
5. Select the second request, then in the Headers tab of the inspection panel, scroll down to the very bottom. Look for a header called Authorization:<br><br>
|
||||
<img src="2.png"><br><br>
|
||||
The long string (after "Bearer", not including it) is your API key.<br><br>*Proxies and Cloudflare-type services may interfere with connection
|
||||
4. Generate something. You should see two requests to api.novelai.net/ai/generate-stream, which might look something like this:<br><br>
|
||||
<img src="1.png"><br><br>
|
||||
5. Select the second request, then in the Headers tab of the inspection panel, scroll down to the very bottom. Look for a header called Authorization:<br><br>
|
||||
<img src="2.png"><br><br>
|
||||
The long string (after "Bearer", not including it) is your API key.<br><br>
|
||||
* Proxies and Cloudflare-type services may interfere with connection.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,22 +1,39 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>NovelAI settings</title>
|
||||
<title>TavernAI - Note - NovelAI Settings</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>NovelAI settings</h2>
|
||||
<p>The files with the settings are here (TavernAI\public\NovelAI Settings) You also can add own settings files.
|
||||
<p>
|
||||
The files with the settings are here (TavernAI\public\NovelAI Settings).<br>
|
||||
You can also manually add your own settings files.
|
||||
</p>
|
||||
<h3>Temperature</h3>
|
||||
<p>Value from 0.1 to 2.0. Lower value - the answers are more logical, but less creative. Higher value - the answers are more creative, but less logical.</p>
|
||||
<h3>Repetition penalty</h3>
|
||||
<p>Repetition penalty is responsible for the penalty of repeated words. If the character is fixated on something or repeats the same phrase, then increasing this parameter will fix it. It is not recommended to increase this parameter too much for the chat format, as it may break this format. The standard value for chat is approximately 1.0 - 1.05</p>
|
||||
<p>
|
||||
Value from 0.1 to 2.0. <br>
|
||||
Lower value - the answers are more logical, but less creative. <br>
|
||||
Higher value - the answers are more creative, but less logical.
|
||||
</p>
|
||||
|
||||
<h3>Repetition penalty</h3>
|
||||
<p>
|
||||
Repetition penalty is responsible for the penalty of repeated words. <br>
|
||||
If the character is fixated on something or repeats the same phrase, then increasing this parameter will fix it. <br>
|
||||
It is not recommended to increase this parameter too much for the chat format, as it may break this format. <br>
|
||||
<b>The standard value for chat is approximately 1.0 - 1.05</b>
|
||||
</p>
|
||||
<h3>Repetition penalty range</h3>
|
||||
<p>The range of influence of Repetition penalty in tokens.</p>
|
||||
<p>
|
||||
The range of influence of Repetition penalty in tokens.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,15 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>NovelAI Models</title>
|
||||
<title>TavernAI - Note - NovelAI Models</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>NovelAI Models</h2>
|
||||
<h4>If your subscribe tier is Paper, Tablet or Scroll use only Euterpe model otherwise you can not get an answer from NovelAI api.</h4>
|
||||
<p>If your subscribe tier is Paper, Tablet or Scroll use only Euterpe model otherwise you can not get an answer from NovelAI api.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -1,21 +1,45 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Anchors</title>
|
||||
<title>TavernAI - Note - Anchors</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Anchors</h2>
|
||||
<h4>Anchors are used to increase the length of messages. There are two types of anchors: Character Anchor and Style Anchor</h4>
|
||||
<p><u>Character Anchor</u> - affects the character played by the AI by motivating him to write longer messages. Looks like [Alexa talks a lot with descriptions]</p>
|
||||
<p><u>Style Anchor</u> - affects all AI model, motivating AI to write longer messages. Looks like [Writing style: very long messages]</p>
|
||||
<hr style="opacity: 0.6;"><p>Anchors Order sets the location of anchors in the promt, the first anchor in the order is much higher and has less influence than second.</p>
|
||||
<p>The second in order anchor is turned on after 8-12 messages, because the first anchor is enough when there are few messages.</p>
|
||||
<p>Sometimes some AI models may not perceive anchors correctly or the AI model already generates sufficiently long messages, so for these cases, to disable anchors, you just need to uncheck the boxes.</p>
|
||||
<br><p>*It is automatically disabled in Pygmalion, since Pygmalion already generates long enough messages</p>
|
||||
<p>
|
||||
Anchors are used to increase the length of messages.<br>
|
||||
There are two types of anchors: <u>Character Anchor</u> and <u>Style Anchor</u>
|
||||
</p>
|
||||
<p>
|
||||
<u>Character Anchor</u> - affects the character played by the AI by motivating him to write longer messages.<br><br>
|
||||
Looks like:
|
||||
<code>[(Bot's name) talks a lot with descriptions]</code>
|
||||
</p>
|
||||
<p>
|
||||
<u>Style Anchor</u> - affects the entire AI model, motivating the AI to write longer messages even when it is not acting as the character.<Br><br>
|
||||
Looks like:
|
||||
<code>[Writing style: very long messages]</code>
|
||||
</p>
|
||||
<hr>
|
||||
<p>
|
||||
Anchors Order sets the location of anchors in the promt, the first anchor in the order is much further back in the context and thus has less influence than second.
|
||||
</p>
|
||||
<p>
|
||||
The second anchor is only turned on after 8-12 messages, because when the chat still only has a few message the first anchor creates enough effect ob its own.
|
||||
</p>
|
||||
<p>
|
||||
Sometimes an AI model may not perceive anchors correctly or the AI model already generates sufficiently long messages.<br>
|
||||
For these cases, you can disable the anchors by unchecking their respective boxes.
|
||||
</p>
|
||||
<p>
|
||||
<u>When using Pygmalion models these anchors are automatically disabled, since Pygmalion already generates long enough messages.</u>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
Reference in New Issue
Block a user