Hi,
Does anyone have advice on how to create a collection of prompts that you use often for working with the AI? I guess I could have them in a file and whenever I want them I can choose the prompt and copy-paste it into the chat window. However, I’m suspecting that there must be better ways of doing this.
Best regards,
Björn
For regularly used prompts one possibility might be to use the new Chat - Query action of batch processing or smart rules. The Chat assistant is only intended for on demand tasks (and especially those worth the costs & delays actually).
Another possibility are scripts, e.g.
property pName : "Geolocation Assistant"
property pRole : "You are a helpful assistant that analyzes images."
property pPrompt : "Analyze this photo (e.g. langscape, skyline, prominent buildings, tourist attractions etc.) to detect the location where the photo was taken. Return only the detected location (e.g. \"Chicago, IL, USA\") or nothing at all if the location is unclear. No preamble, no explanations, no reasoning."
tell application id "DNtp"
tell think window 1 to display chat dialog role pRole name pName prompt pPrompt
end tell
4 Likes