From db692738fe1e74f015b28ad8530e2ab9b97b9da0 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Thu, 10 Oct 2024 14:54:12 +0100 Subject: [PATCH] Allow content type of user input to be specified Useful to use text/plain for code --- plugins/tiddlywiki/ai-tools/globals.tid | 8 ++++++-- plugins/tiddlywiki/ai-tools/styles.tid | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/plugins/tiddlywiki/ai-tools/globals.tid b/plugins/tiddlywiki/ai-tools/globals.tid index 7aeabae18..78d6a3b1e 100644 --- a/plugins/tiddlywiki/ai-tools/globals.tid +++ b/plugins/tiddlywiki/ai-tools/globals.tid @@ -106,6 +106,7 @@ Procedure to display a message from an AI conversation. Current tiddler is the c <$wikify name="messageText" text={{!!text}} + type={{!!type}} output="text" > <$text text={{{ [jsonstringify[]] }}}/> @@ -123,12 +124,13 @@ Action procedure to get the next response from the LLM <$action-createtiddler $basetitle=<> tags=<> - type="text/markdown" role="user" text={{!!current-response-text}} + type={{!!current-response-type}} image={{!!current-response-image}} > <$action-deletefield $tiddler=<> $field="current-response-text"/> + <$action-setfield $tiddler=<> $field="current-response-type" $value="text/vnd.tiddlywiki"/> <$action-deletefield $tiddler=<> $field="current-response-image"/> <$transclude $variable="ai-tools-get-llm-completion" @@ -210,7 +212,8 @@ Action procedure to get the next response from the LLM -
+
+ <$edit-text tiddler=<> field="current-response-type" tag="input" class="tc-edit-texteditor"/> Note that your text will be wikified before being sent to the LLM. Use {{transclusion}} to include other tiddlers in your messages
@@ -223,6 +226,7 @@ Action procedure to get the next response from the LLM tags="$:/tags/AI/Conversation" system-prompt="Transcript of a never ending dialog, where the User interacts with an Assistant. The Assistant is helpful, kind, honest, good at writing, and never fails to answer the User's requests immediately and with precision." current-response-text="Please list the 10 most important mechanical inventions of the Twentieth Century" + current-response-type="text/vnd.tiddlywiki" > <$action-navigate $to=<>/> diff --git a/plugins/tiddlywiki/ai-tools/styles.tid b/plugins/tiddlywiki/ai-tools/styles.tid index 226f76953..7225de54d 100644 --- a/plugins/tiddlywiki/ai-tools/styles.tid +++ b/plugins/tiddlywiki/ai-tools/styles.tid @@ -147,7 +147,7 @@ tags: [[$:/tags/Stylesheet]] fill: #000; } -.ai-conversation .ai-user-prompt-help { +.ai-conversation .ai-user-prompt-type { font-size: 0.8em; line-height: 1.5; }