You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicconstCHAT_USER_INSTRUCTIONS = 'This is a conversation in a specific language between the user and you, Nextcloud Assistant. You are a kind, polite and helpful AI that helps the user to the best of its abilities. If you do not understand something, you will ask for clarification. Detect the language that the user is using. Make sure to use the same language in your response. Do not mention the language explicitly.';
57
57
publicconstCHAT_USER_INSTRUCTIONS_TITLE = 'Above is a chat session in a specific language between the user and you, Nextcloud Assistant. Generate a suitable title summarizing the conversation in the same language. Output only the title in plain text, nothing else.';
Copy file name to clipboardExpand all lines: src/components/ChattyLLM/ChattyLLMInputForm.vue
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,10 @@
128
128
<pclass="session-area__disclaimer">
129
129
{{ t('assistant', 'Output shown here is generated by AI. Make sure to always double-check.') }}
130
130
</p>
131
+
<pv-if="chatContent?.length > 64_000"
132
+
class="session-area__disclaimer">
133
+
{{ t('assistant', 'Messages should not be longer than {maxLength} characters (currently {length}).', { maxLength: 64_000, length: chatContent.length }) }}
0 commit comments