1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-08-06 22:04:19 +00:00

Give conversation tiddlers a dummy text field

To avoid triggering a docs template
This commit is contained in:
Jeremy Ruston 2024-07-19 14:51:18 +01:00
parent 638bd78059
commit 0e5955397b
2 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,8 @@ ConversationsArchiveImporter.prototype.import = function(widget,conversationsTit
title: conversationTitle, title: conversationTitle,
tags: $tw.utils.stringifyList(["$:/tags/AI/Conversation"]), tags: $tw.utils.stringifyList(["$:/tags/AI/Conversation"]),
created: conversationCreated, created: conversationCreated,
modified: conversationModified modified: conversationModified,
text: "."
}; };
tiddlers.push(conversationFields); tiddlers.push(conversationFields);
var messageIndex = 1; var messageIndex = 1;

View File

@ -7,6 +7,7 @@ tags: $:/tags/AI/PageMenu
tags="$:/tags/AI/Conversation" tags="$:/tags/AI/Conversation"
system-prompt="You are a helpful assistant." system-prompt="You are a helpful assistant."
current-response-text="Please list the 10 most important mechanical inventions of the Twentieth Century" current-response-text="Please list the 10 most important mechanical inventions of the Twentieth Century"
text="."
> >
<$action-navigate $to=<<createTiddler-title>>/> <$action-navigate $to=<<createTiddler-title>>/>
</$action-createtiddler> </$action-createtiddler>