diff --git a/frontend/src/i18n/en.json b/frontend/src/i18n/en.json index 259afd4b..e2d5e77a 100644 --- a/frontend/src/i18n/en.json +++ b/frontend/src/i18n/en.json @@ -7,6 +7,21 @@ "AI Model Configuration": "AI Model Configuration", "Details": "Details" }, + "parameter": { + "parameter_configuration": "Parameter Configuration", + "question_count_settings": "Question Count Settings", + "model_thinking_process": "Expand Model Thinking Process", + "rows_of_data": "Limit 1000 Rows of Data", + "third_party_platform_settings": "Third-Party Platform Settings", + "by_third_party_platform": "Automatic User Creation by Third-Party Platform", + "platform_user_organization": "Third-Party Platform User Organization", + "platform_user_roles": "Third-Party Platform User Roles", + "excessive_data_volume": "Disabling the 1000-row data limit may cause system lag due to excessive data volume.", + "prompt": "Prompt", + "disabling_successfully": "Disabling Successfully", + "closed_by_default": "In the Question Count window, control whether the model thinking process is expanded or closed by default.", + "and_platform_integration": "Scope includes authentication settings and platform integration." + }, "prompt": { "default_password": "Default password:{msg}", "no_sql_sample": "No SQL sample currently available", @@ -795,4 +810,4 @@ "modelType": { "llm": "Large Language Model" } -} +} \ No newline at end of file diff --git a/frontend/src/i18n/ko-KR.json b/frontend/src/i18n/ko-KR.json index a79aa92e..c9739a9a 100644 --- a/frontend/src/i18n/ko-KR.json +++ b/frontend/src/i18n/ko-KR.json @@ -7,6 +7,21 @@ "AI Model Configuration": "모델 구성", "Details": "세부" }, + "parameter": { + "parameter_configuration": "매개변수 구성", + "question_count_settings": "질문 수 설정", + "model_thinking_process": "모델 사고 프로세스 확장", + "rows_of_data": "데이터 1,000행 제한", + "third_party_platform_settings": "타사 플랫폼 설정", + "by_third_party_platform": "타사 플랫폼에 의한 자동 사용자 생성", + "platform_user_organization": "타사 플랫폼 사용자 구성", + "platform_user_roles": "타사 플랫폼 사용자 역할", + "excessive_data_volume": "1,000행 데이터 제한을 비활성화하면 과도한 데이터 양으로 인해 시스템 지연이 발생할 수 있습니다.", + "prompt": "프롬프트", + "disabling_successfully": "비활성화 완료", + "closed_by_default": "질문 수 창에서 모델 사고 프로세스를 기본적으로 확장할지 또는 닫을지 여부를 제어합니다.", + "and_platform_integration": "범위에는 인증 설정 및 플랫폼 통합이 포함됩니다." + }, "prompt": { "default_password:": "기본 비밀번호:{msg}", "no_sql_sample": "현재 사용 가능한 SQL 샘플 라이브러리가 없습니다", @@ -795,4 +810,4 @@ "modelType": { "llm": "대형 언어 모델" } -} +} \ No newline at end of file diff --git a/frontend/src/i18n/zh-CN.json b/frontend/src/i18n/zh-CN.json index 65917ec8..3de8053f 100644 --- a/frontend/src/i18n/zh-CN.json +++ b/frontend/src/i18n/zh-CN.json @@ -7,6 +7,21 @@ "AI Model Configuration": "模型配置", "Details": "详情" }, + "parameter": { + "parameter_configuration": "参数配置", + "question_count_settings": "问数设置", + "model_thinking_process": "展开模型思考过程", + "rows_of_data": "限制 1000 行数据", + "third_party_platform_settings": "第三方平台设置", + "by_third_party_platform": "第三方自动创建用户", + "platform_user_organization": "第三方平台用户组织", + "platform_user_roles": "第三方平台用户角色", + "excessive_data_volume": "关闭1000行的数据限制后,数据量过大,可能会造成系统卡顿", + "prompt": "提示", + "disabling_successfully": "关闭成功", + "closed_by_default": "在问数窗口中,控制模型思考过程默认展开或者关闭", + "and_platform_integration": "作用域包括认证设置和平台对接" + }, "prompt": { "default_password": "默认密码:{msg}", "no_sql_sample": "暂无 SQL 示例", @@ -795,4 +810,4 @@ "modelType": { "llm": "大语言模型" } -} +} \ No newline at end of file diff --git a/frontend/src/router/index.ts b/frontend/src/router/index.ts index 4ab80003..8ba1f21f 100644 --- a/frontend/src/router/index.ts +++ b/frontend/src/router/index.ts @@ -19,6 +19,7 @@ import Professional from '@/views/system/professional/index.vue' import Training from '@/views/system/training/index.vue' import Prompt from '@/views/system/prompt/index.vue' import Appearance from '@/views/system/appearance/index.vue' +import Parameter from '@/views/system/parameter/index.vue' import Authentication from '@/views/system/authentication/index.vue' import Permission from '@/views/system/permission/index.vue' import User from '@/views/system/user/User.vue' @@ -196,6 +197,12 @@ export const routes = [ component: Appearance, meta: { title: t('system.appearance_settings') }, }, + { + path: 'parameter', + name: 'parameter', + component: Parameter, + meta: { title: t('parameter.parameter_configuration') }, + }, { path: 'authentication', name: 'authentication', diff --git a/frontend/src/views/system/parameter/index.vue b/frontend/src/views/system/parameter/index.vue new file mode 100644 index 00000000..273b7f9c --- /dev/null +++ b/frontend/src/views/system/parameter/index.vue @@ -0,0 +1,191 @@ + + + + +