mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
90 lines
3.0 KiB
HTML
90 lines
3.0 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<title>Entry Fields</title>
|
|
<link rel="stylesheet" href="/css/notes.css">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<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>
|
|
World Info Entry
|
|
</h2>
|
|
<p></p>
|
|
<h3>
|
|
Key
|
|
</h3>
|
|
<p>
|
|
A list of keywords that trigger the activation of a World Info entry.
|
|
</p>
|
|
<h3>
|
|
Secondary Key
|
|
</h3>
|
|
<p>
|
|
A list of supplementary keywords that are used in conjunction with the main keywords (see <a
|
|
href="#Selective">Selective</a>).
|
|
</p>
|
|
<h3>
|
|
Content
|
|
</h3>
|
|
<p>
|
|
The text that is inserted into the prompt upon entry activation.
|
|
</p>
|
|
<h3>
|
|
Insertion Order
|
|
</h3>
|
|
<p>
|
|
Numeric value. Defines a priority of the entry if multiple were activated at once. Entries with higher
|
|
order number will be inserted closer to the end of the context as they will have more impact on the output.
|
|
</p>
|
|
<h3>
|
|
Insertion Position
|
|
</h3>
|
|
<p>
|
|
<ul>
|
|
<li>
|
|
<b>Before Chara:</b>
|
|
World Info entry is inserted before the character's description and
|
|
scenario. Has moderate impact on the conversation.
|
|
</li>
|
|
<li>
|
|
<b>After Chara:</b>
|
|
World Info entry is inserted after the character's description and
|
|
scenario. Has greater impact on the conversation.
|
|
</li>
|
|
</ul>
|
|
</p>
|
|
<h3>
|
|
Comment
|
|
</h3>
|
|
<p>
|
|
A supplemental text comment for the your convenience, which is not utilized by the AI.
|
|
</p>
|
|
<h3>
|
|
Constant
|
|
</h3>
|
|
<p>
|
|
If enabled, the entry would always be present in the prompt.
|
|
</p>
|
|
<h3 id="Selective">
|
|
Selective
|
|
</h3>
|
|
<p>
|
|
If enabled, the entry would only be inserted when both a Key <b>AND</b> a Secondary Key have been
|
|
activated.
|
|
</p>
|
|
<p>
|
|
If no secondary keys provided, this flag is ignored.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|