|
<< Click to Display Table of Contents >> Navigation: 3. Script Language > AI - Artificial Intelligence Commands > AIC. - Artificial Intelligence Command > AIC. - Artificial Intelligence Command |
AIC.AskHistoryClipboard |
Top |
MiniRobotLanguage (MRL)
AIC.AskHistoryClipboard
Ask with history from clipboard
Intention
The AIC.AskHistoryClipboard command reads conversation history from the clipboard and sends a prompt with that context. Useful for importing conversations from other applications.
Syntax
AIC.AskHistoryClipboard|$$Prompt[|$$RetVar]
P1 - $$Prompt - The current prompt/question
P2 - $$RetVar (optional) - Variable to store the response
Example
' Copy conversation history to clipboard
' (From ChatGPT web interface, for example)
' Ask with that history as context
AIC.AskHistoryClipboard|Continue this conversation|$$Answer
DBP.$$Answer
' Use with delimiter settings
AIC.SetDelimiterQS|User:
AIC.SetDelimiterAN|Assistant:
AIC.AskHistoryClipboard|Summarize the above|$$Summary
Related Commands
- AIC.AskWithHistory - Ask with history
- AIC.SetDelimiterQS - Set question delimiter
- AIC.SetDelimiterAN - Set answer delimiter