How to use prompt hints? #155
-
Hi, Newbe here ;) I've seen recent update with added feature: ...but I don't know how to use it. My understanding is that I type something I want to include in a prompt that's later sent to OpenAI API as {hint} variable in a prompt message. Is that correct? If so then it doesn't work, unless I'm missing something. I just type my hints into commit message field (I use PyCharm IDE), but it's being ignored and I don't see those hints in the final commit message generated by AI Commits. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey, I've just tried it. There's a bit of a fine print at the bottom when you edit a prompt, saying
So we have to use both curly braces and $, here's how I use it in my template:
Then if I write something in the commit message box, like "code comments were outdated", it is injected as Some samples I've tried, so that I know it actually work - #18 (reply in thread) (Though with that particular template I find my notes are ignored 50% of the time) |
Beta Was this translation helpful? Give feedback.
Hey, I've just tried it. There's a bit of a fine print at the bottom when you edit a prompt, saying
So we have to use both curly braces and $, here's how I use it in my template:
Then if I write something in the commit message box, like "code comments were outdated", it is injected as
Author's notes: "code comments were outdated"
Some samples I've tried, so that I know it actually work - #18 (reply in thread) (Though with that particular template I find my notes are ignored 50% of the t…