mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-25 17:44:49 +01:00
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
{% extends "modal_base.html" %}
|
|
|
|
{% block form_attributes %}
|
|
hx-patch="/update-query-prompt"
|
|
hx-target="#system_prompt_section"
|
|
hx-swap="outerHTML"
|
|
{% endblock %}
|
|
|
|
{% block modal_content %}
|
|
<h3 class="text-xl font-extrabold tracking-tight mb-2">Edit System Prompt</h3>
|
|
|
|
<div class="form-control">
|
|
<textarea name="query_system_prompt" class="nb-input h-96 w-full font-mono text-sm">{{
|
|
settings.query_system_prompt }}</textarea>
|
|
<p class="text-xs opacity-70 mt-1">System prompt used for answering user queries</p>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block primary_actions %}
|
|
<button type="button" class="nb-btn w-full sm:w-auto sm:mr-2" id="reset_prompt_button">
|
|
Reset to Default
|
|
</button>
|
|
|
|
<textarea id="default_prompt_content" style="display:none;">{{ default_query_prompt }}</textarea>
|
|
<script>
|
|
document.getElementById('reset_prompt_button').addEventListener('click', function () {
|
|
const defaultContent = document.getElementById('default_prompt_content').value;
|
|
document.querySelector('textarea[name=query_system_prompt]').value = defaultContent;
|
|
});
|
|
</script>
|
|
|
|
<button type="submit" class="nb-btn nb-cta w-full sm:w-auto">
|
|
<span class="htmx-indicator hidden">
|
|
<span class="loading loading-spinner loading-xs mr-2"></span>
|
|
</span>
|
|
Save Changes
|
|
</button>
|
|
{% endblock %}
|