Files
SillyTavern/public/scripts/templates/exportPreset.html
Cohee 864a733663 "Bind preset to connection" toggle (#3999)
* Implement THE TOGGLE

* Don't force reconnect on preset switch if toggle off

* Don't clear custom models list either
2025-05-17 20:40:58 +03:00

28 lines
1.2 KiB
HTML

<div class="flex-container flexFlowColumn marginBot10">
<h3 data-i18n="Do you want to export connection data with the preset?">
Do you want to export connection data with the preset?
</h3>
<div data-i18n="This includes the selected source, models, and other preferences set in the API Connections panel.">
This includes the selected source, models, and other preferences set in the API Connections panel.
</div>
<strong data-i18n="Your stored API keys are never exported.">
Your stored API keys are never exported.
</strong>
</div>
<div class="flex-container flexFlowColumn">
<label class="checkbox_label" for="export_connection_data_yes">
<input type="radio" id="export_connection_data_yes" name="export_connection_data" value="true">
<span data-i18n="Export connection data">
Export connection data
</span>
</label>
<label class="checkbox_label" for="export_connection_data_no">
<input type="radio" id="export_connection_data_no" name="export_connection_data" value="false" checked>
<span data-i18n="Do not export connection data">
Do not export connection data
</span>
</label>
</div>