Skip to content

Commit 7222e34

Browse files
committed
feat: ai hint in chat
Signed-off-by: Lukas Schaefer <lukas@lschaefer.xyz>
1 parent 9a383a3 commit 7222e34

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/components/ChattyLLM/ChattyLLMInputForm.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@
125125
class="session-area__agency-confirmation"
126126
@confirm="onAgencyAnswer(true)"
127127
@reject="onAgencyAnswer(false)" />
128+
<p class="session-area__disclaimer">
129+
This output was generated by AI. Make sure to double-check and adjust.
130+
</p>
128131
<InputArea ref="inputComponent"
129132
v-model:chat-content="chatContent"
130133
class="session-area__input-area"
@@ -1002,6 +1005,12 @@ export default {
10021005
padding-left: 1em;
10031006
}
10041007
1008+
&__disclaimer {
1009+
align-self: center;
1010+
color: var(--color-text-lighter);
1011+
margin: 0.5em 0;
1012+
}
1013+
10051014
&__agency-confirmation {
10061015
margin-left: 1em;
10071016
}

0 commit comments

Comments
 (0)