diff --git a/web/src/components/game/panels/system/LLMConfigPanel.vue b/web/src/components/game/panels/system/LLMConfigPanel.vue index 06f1176..67a474d 100644 --- a/web/src/components/game/panels/system/LLMConfigPanel.vue +++ b/web/src/components/game/panels/system/LLMConfigPanel.vue @@ -26,6 +26,12 @@ const modeOptions = computed(() => [ ]) const presets = computed(() => [ + { + name: t('llm.presets.openai'), + base_url: 'https://api.openai.com/v1', + model_name: 'gpt-4o', + fast_model_name: 'gpt-4o-mini' + }, { name: t('llm.presets.qwen'), base_url: 'https://dashscope.aliyuncs.com/compatible-mode/v1', @@ -282,6 +288,9 @@ onMounted(() => {

{{ t('llm.help.q3_title') }}

{{ t('llm.help.q3_content') }}

+
+

{{ t('llm.help.q3_format_note') }}

+

{{ t('llm.help.q3_base_url') }}

{{ t('llm.help.q3_api_key') }}

@@ -292,6 +301,7 @@ onMounted(() => {

{{ t('llm.help.q4_title') }}