1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-05 10:16:57 +00:00

User messages should be wikified

Makes it possible to include other tiddlers in a prompt
This commit is contained in:
Jeremy Ruston 2024-10-10 13:22:59 +01:00
parent 904155043a
commit 8efec8920d
4 changed files with 21 additions and 2 deletions

View File

@ -101,6 +101,17 @@ Procedure to display a message from an AI conversation. Current tiddler is the c
</$qualify>
\end ai-tools-message
\procedure ai-tools-get-message()
\whitespace trim
<$wikify
name="messageText"
text={{!!text}}
output="text"
>
<$text text={{{ [<messageText>jsonstringify[]] }}}/>
</$wikify>
\end
<!--
Action procedure to get the next response from the LLM
-->
@ -199,6 +210,9 @@ Action procedure to get the next response from the LLM
</div>
</div>
</div>
<div class="ai-user-prompt-help">
Note that your text will be wikified before being sent to the LLM. Use &#x7B;&#x7B;transclusion&#x7D;&#x7D; to include other tiddlers in your messages
</div>
</div>
</$let>
\end ai-tools-conversation

View File

@ -54,7 +54,7 @@ Wikified JSON text to be sent to server
<%if [<currentTiddler>has[image]] %>
[img-<$text text=<<counter>>/>]
<%endif%>
<$text text={{{ [<currentTiddler>get[text]jsonstringify[]] }}}/>
<<ai-tools-get-message>>
</$list>
\nLlama:
\end json-prompt-text

View File

@ -24,7 +24,7 @@ Wikified JSON text to be sent to server
"content": [
{
"type": "text",
"text": "<$text text={{{ [<currentTiddler>get[text]jsonstringify[]] }}}/>"
"text": "<<ai-tools-get-message>>"
}
<%if [<currentTiddler>get[image]else[]!match[]] %>
,

View File

@ -147,6 +147,11 @@ tags: [[$:/tags/Stylesheet]]
fill: #000;
}
.ai-conversation .ai-user-prompt-help {
font-size: 0.8em;
line-height: 1.5;
}
.ai-request-spinner {
animation: ai-request-spinner-animation-rotate 1s infinite;
height: 50px;