Skip to content

Commit 51ec0b7

Browse files
authored
Merge pull request #329 from nextcloud/feat/ai-hint-chat
feat: ai hint in chat
2 parents 9a383a3 + da039fe commit 51ec0b7

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+
{{ t('assistant', 'Output shown here is generated by AI. Make sure to always double-check.') }}
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)