From 762c3d4950983f11f5e5552fdbfab95e99d3f929 Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Fri, 7 Feb 2025 13:29:07 +0800 Subject: [PATCH] feat: Reposition ocoolAI provider in LLM store configuration --- src/renderer/src/store/llm.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/renderer/src/store/llm.ts b/src/renderer/src/store/llm.ts index cf8fe936..943c8002 100644 --- a/src/renderer/src/store/llm.ts +++ b/src/renderer/src/store/llm.ts @@ -43,6 +43,16 @@ const initialState: LlmState = { isSystem: true, enabled: false }, + { + id: 'ocoolai', + name: 'ocoolAI', + type: 'openai', + apiKey: '', + apiHost: 'https://one.ooo.cool', + models: SYSTEM_MODELS.ocoolai, + isSystem: true, + enabled: false + }, { id: 'deepseek', name: 'deepseek', @@ -104,16 +114,6 @@ const initialState: LlmState = { isSystem: true, enabled: false }, - { - id: 'ocoolai', - name: 'ocoolAI', - type: 'openai', - apiKey: '', - apiHost: 'https://one.ooo.cool', - models: SYSTEM_MODELS.ocoolai, - isSystem: true, - enabled: false - }, { id: 'github', name: 'Github Models',