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:
parent
904155043a
commit
8efec8920d
@ -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 {{transclusion}} to include other tiddlers in your messages
|
||||
</div>
|
||||
</div>
|
||||
</$let>
|
||||
\end ai-tools-conversation
|
||||
|
@ -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
|
||||
|
@ -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[]] %>
|
||||
,
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user