mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-07 00:36:41 +08:00
chore: reorder llm thinking setting
This commit is contained in:
@@ -964,6 +964,15 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
|
|||||||
prepend-inner-icon="mdi-counter"
|
prepend-inner-icon="mdi-counter"
|
||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
|
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
|
||||||
|
<VSelect
|
||||||
|
v-model="SystemSettings.Basic.LLM_THINKING_LEVEL"
|
||||||
|
:label="t('setting.system.llmThinking')"
|
||||||
|
:hint="t('setting.system.llmThinkingHint')"
|
||||||
|
:items="thinkingLevelItems"
|
||||||
|
persistent-hint
|
||||||
|
/>
|
||||||
|
</VCol>
|
||||||
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
|
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
|
||||||
<VSelect
|
<VSelect
|
||||||
v-model="SystemSettings.Basic.AI_AGENT_JOB_INTERVAL"
|
v-model="SystemSettings.Basic.AI_AGENT_JOB_INTERVAL"
|
||||||
@@ -991,15 +1000,6 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
|
|||||||
persistent-hint
|
persistent-hint
|
||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
|
|
||||||
<VSelect
|
|
||||||
v-model="SystemSettings.Basic.LLM_THINKING_LEVEL"
|
|
||||||
:label="t('setting.system.llmThinking')"
|
|
||||||
:hint="t('setting.system.llmThinkingHint')"
|
|
||||||
:items="thinkingLevelItems"
|
|
||||||
persistent-hint
|
|
||||||
/>
|
|
||||||
</VCol>
|
|
||||||
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
|
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
|
||||||
<VSwitch
|
<VSwitch
|
||||||
v-model="SystemSettings.Basic.AI_AGENT_RETRY_TRANSFER"
|
v-model="SystemSettings.Basic.AI_AGENT_RETRY_TRANSFER"
|
||||||
|
|||||||
@@ -130,17 +130,6 @@ onMounted(() => {
|
|||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
|
|
||||||
<VCol cols="12" md="3">
|
|
||||||
<VSelect
|
|
||||||
v-model="wizardData.agent.thinkingLevel"
|
|
||||||
:label="t('setting.system.llmThinking')"
|
|
||||||
:hint="t('setting.system.llmThinkingHint')"
|
|
||||||
:items="thinkingLevelItems"
|
|
||||||
persistent-hint
|
|
||||||
color="primary"
|
|
||||||
/>
|
|
||||||
</VCol>
|
|
||||||
|
|
||||||
<VCol cols="12" md="6">
|
<VCol cols="12" md="6">
|
||||||
<VSelect
|
<VSelect
|
||||||
v-model="wizardData.agent.provider"
|
v-model="wizardData.agent.provider"
|
||||||
@@ -219,6 +208,17 @@ onMounted(() => {
|
|||||||
/>
|
/>
|
||||||
</VCol>
|
</VCol>
|
||||||
|
|
||||||
|
<VCol cols="12" md="6">
|
||||||
|
<VSelect
|
||||||
|
v-model="wizardData.agent.thinkingLevel"
|
||||||
|
:label="t('setting.system.llmThinking')"
|
||||||
|
:hint="t('setting.system.llmThinkingHint')"
|
||||||
|
:items="thinkingLevelItems"
|
||||||
|
persistent-hint
|
||||||
|
color="primary"
|
||||||
|
/>
|
||||||
|
</VCol>
|
||||||
|
|
||||||
<VCol cols="12" md="6">
|
<VCol cols="12" md="6">
|
||||||
<VSelect
|
<VSelect
|
||||||
v-model="wizardData.agent.jobInterval"
|
v-model="wizardData.agent.jobInterval"
|
||||||
|
|||||||
Reference in New Issue
Block a user