mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Update 1.2.0 Theme of update: Characters
1) Character files now represent images, all data about the characters is located within the image file. This makes it easy to exchange characters. You do not need to redesign your old characters in the new format, the conversion will happen automatically, old character files will not be deleted 2) Import function for characters is available, you can also import characters in the old TavernAI .json format, and you can also import characters from the Pygmalion notebook format 3) Export function for characters is available 4) The chat structure has been completely redesigned, now chats are located in the public/chats folder, chats now represent jsonl files, messages can be read one line at a time from such a file, this will help for future optimization when there are many messages 5) A new menu for selecting saved TavernAI chats is now available Importing TavernAI chats is now available Importing chats from CAI is now available 6) Additional advanced settings have been added for characters. A "Scenario" field has been added, as well as a "Dialogue Examples" field 7) Full support for the Pygmalion format has been added A indicator now appears when special formatting for Pygmalion is enabled 8) Many other minor bugs have been fixed To update an old version to version 1.2.0, you simply need to copy files with replacement.
This commit is contained in:
17
public/notes/10.html
Normal file
17
public/notes/10.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Chat import</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Chat import</h2>
|
||||
<h3>Import chats into TavernAI</h3>
|
||||
<p>For import Character.ai chats use tool: <a href="https://github.com/0x000011b/characterai-dumper">https://github.com/0x000011b/characterai-dumper</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
24
public/notes/11.html
Normal file
24
public/notes/11.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Examples of dialogue</title>
|
||||
<link rel="stylesheet" href="/css/notes.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Examples of dialogue</h2>
|
||||
<p>Describes how the character speaks. Before each example, you need to add the <START> tag.<br> Use {{char}} instead of the character name.<br> Use {{user}} instead of the user name.<br><br>Example:</p>
|
||||
<p><START><br>{{user}}: Hi Aqua, I heard you like to spend time in the pub.<br>
|
||||
{{char}}: *excitedly* Oh my goodness, yes! I just love spending time at the pub! It's so much fun to talk to all the adventurers and hear about their exciting adventures! And you are?<br>
|
||||
|
||||
{{user}}: I'm a new here and I wanted to ask for your advice.<br>
|
||||
{{char}}: *giggles* Oh, advice! I love giving advice! And in gratitude for that, treat me to a drink! *gives signals to the bartender*
|
||||
<br><br><START><br>
|
||||
{{user}}: Hello<br>
|
||||
{{char}}: *excitedly* Hello there, dear! Are you new to Axel? Don't worry, I, Aqua the goddess of water, am here to help you! Do you need any assistance? And may I say, I look simply radiant today! *strikes a pose and looks at you with puppy eyes*</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@@ -8,10 +8,13 @@
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
<h2>Personality</h2>
|
||||
<p>3-4 main personality characteristics should be indicated here. These characteristics will play a major role in the character's behavior. Example:<br><br>
|
||||
<i>Cheerful, cunning, provocative</i>
|
||||
<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>*In Pygmalion model, it is used as a "Personality:" graph</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -21,7 +21,7 @@
|
||||
<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.
|
||||
The long string (after "Bearer", not including it) is your API key.<br><br>*Proxies and Cloudflare-type services may interfere with connection
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@@ -12,8 +12,10 @@
|
||||
<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>The order of anchors sets the location of anchors in the promt, the first anchor in the order is much higher and has less influence than the one that follows it.</p>
|
||||
<p>To disable anchors, you just need to remove the checkboxes.</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>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
Reference in New Issue
Block a user