2025-12-23 08:58:55 +00:00
|
|
|
|
import type { ModelParameterRule } from '@/app/components/header/account-setting/model-provider-page/declarations'
|
2024-04-08 10:51:46 +00:00
|
|
|
|
import { InputVarType } from '@/app/components/workflow/types'
|
2026-02-10 09:55:11 +00:00
|
|
|
|
import { env } from '@/env'
|
2024-04-08 13:36:27 +00:00
|
|
|
|
import { PromptRole } from '@/models/debug'
|
2025-09-18 04:49:10 +00:00
|
|
|
|
import { PipelineInputVarType } from '@/models/pipeline'
|
2025-12-23 08:58:55 +00:00
|
|
|
|
import { AgentStrategy } from '@/types/app'
|
2025-09-18 04:49:10 +00:00
|
|
|
|
import pkg from '../package.json'
|
|
|
|
|
|
|
|
|
|
|
|
const getStringConfig = (
|
|
|
|
|
|
envVar: string | undefined,
|
|
|
|
|
|
defaultValue: string,
|
|
|
|
|
|
) => {
|
2025-12-23 08:58:55 +00:00
|
|
|
|
if (envVar)
|
|
|
|
|
|
return envVar
|
2025-06-23 05:55:57 +00:00
|
|
|
|
return defaultValue
|
2023-05-15 00:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const API_PREFIX = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_API_PREFIX,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'http://localhost:5001/console/api',
|
|
|
|
|
|
)
|
|
|
|
|
|
export const PUBLIC_API_PREFIX = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_PUBLIC_API_PREFIX,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'http://localhost:5001/api',
|
|
|
|
|
|
)
|
|
|
|
|
|
export const MARKETPLACE_API_PREFIX = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_MARKETPLACE_API_PREFIX,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'http://localhost:5002/api',
|
|
|
|
|
|
)
|
|
|
|
|
|
export const MARKETPLACE_URL_PREFIX = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_MARKETPLACE_URL_PREFIX,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
const EDITION = env.NEXT_PUBLIC_EDITION
|
2023-05-15 00:51:32 +00:00
|
|
|
|
|
|
|
|
|
|
export const IS_CE_EDITION = EDITION === 'SELF_HOSTED'
|
2025-03-06 02:25:18 +00:00
|
|
|
|
export const IS_CLOUD_EDITION = EDITION === 'CLOUD'
|
2023-05-15 00:51:32 +00:00
|
|
|
|
|
2025-12-12 03:49:12 +00:00
|
|
|
|
export const AMPLITUDE_API_KEY = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_AMPLITUDE_API_KEY,
|
2025-12-12 03:49:12 +00:00
|
|
|
|
'',
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const IS_DEV = env.NODE_ENV === 'development'
|
|
|
|
|
|
export const IS_PROD = env.NODE_ENV === 'production'
|
2025-12-03 10:19:12 +00:00
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const SUPPORT_MAIL_LOGIN = env.NEXT_PUBLIC_SUPPORT_MAIL_LOGIN
|
2024-06-06 07:01:58 +00:00
|
|
|
|
|
2023-05-15 00:51:32 +00:00
|
|
|
|
export const TONE_LIST = [
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 1,
|
|
|
|
|
|
name: 'Creative',
|
|
|
|
|
|
config: {
|
|
|
|
|
|
temperature: 0.8,
|
|
|
|
|
|
top_p: 0.9,
|
|
|
|
|
|
presence_penalty: 0.1,
|
|
|
|
|
|
frequency_penalty: 0.1,
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 2,
|
|
|
|
|
|
name: 'Balanced',
|
|
|
|
|
|
config: {
|
|
|
|
|
|
temperature: 0.5,
|
|
|
|
|
|
top_p: 0.85,
|
|
|
|
|
|
presence_penalty: 0.2,
|
|
|
|
|
|
frequency_penalty: 0.3,
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 3,
|
|
|
|
|
|
name: 'Precise',
|
|
|
|
|
|
config: {
|
|
|
|
|
|
temperature: 0.2,
|
|
|
|
|
|
top_p: 0.75,
|
|
|
|
|
|
presence_penalty: 0.5,
|
|
|
|
|
|
frequency_penalty: 0.5,
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 4,
|
|
|
|
|
|
name: 'Custom',
|
2025-12-29 06:52:32 +00:00
|
|
|
|
config: undefined,
|
2023-05-15 00:51:32 +00:00
|
|
|
|
},
|
2025-12-29 06:52:32 +00:00
|
|
|
|
] as const
|
2023-05-15 00:51:32 +00:00
|
|
|
|
|
2023-10-12 15:14:28 +00:00
|
|
|
|
export const DEFAULT_CHAT_PROMPT_CONFIG = {
|
2024-04-08 13:36:27 +00:00
|
|
|
|
prompt: [
|
|
|
|
|
|
{
|
|
|
|
|
|
role: PromptRole.system,
|
|
|
|
|
|
text: '',
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
2023-10-12 15:14:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_COMPLETION_PROMPT_CONFIG = {
|
|
|
|
|
|
prompt: {
|
|
|
|
|
|
text: '',
|
|
|
|
|
|
},
|
|
|
|
|
|
conversation_histories_role: {
|
|
|
|
|
|
user_prefix: '',
|
|
|
|
|
|
assistant_prefix: '',
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-09-09 16:12:34 +00:00
|
|
|
|
export const getMaxToken = (modelId: string) => {
|
2025-09-18 04:49:10 +00:00
|
|
|
|
return modelId === 'gpt-4' || modelId === 'gpt-3.5-turbo-16k' ? 8000 : 4000
|
2023-09-09 16:12:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-15 00:51:32 +00:00
|
|
|
|
export const LOCALE_COOKIE_NAME = 'locale'
|
|
|
|
|
|
|
2025-11-20 03:40:35 +00:00
|
|
|
|
const COOKIE_DOMAIN = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_COOKIE_DOMAIN,
|
2025-11-20 03:40:35 +00:00
|
|
|
|
'',
|
|
|
|
|
|
).trim()
|
2025-12-26 02:49:10 +00:00
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const BATCH_CONCURRENCY = env.NEXT_PUBLIC_BATCH_CONCURRENCY
|
2025-12-26 02:49:10 +00:00
|
|
|
|
|
2025-10-19 13:29:04 +00:00
|
|
|
|
export const CSRF_COOKIE_NAME = () => {
|
2025-12-23 08:58:55 +00:00
|
|
|
|
if (COOKIE_DOMAIN)
|
|
|
|
|
|
return 'csrf_token'
|
2025-10-19 13:29:04 +00:00
|
|
|
|
const isSecure = API_PREFIX.startsWith('https://')
|
|
|
|
|
|
return isSecure ? '__Host-csrf_token' : 'csrf_token'
|
|
|
|
|
|
}
|
|
|
|
|
|
export const CSRF_HEADER_NAME = 'X-CSRF-Token'
|
|
|
|
|
|
export const ACCESS_TOKEN_LOCAL_STORAGE_NAME = 'access_token'
|
|
|
|
|
|
export const PASSPORT_LOCAL_STORAGE_NAME = (appCode: string) => `passport-${appCode}`
|
|
|
|
|
|
export const PASSPORT_HEADER_NAME = 'X-App-Passport'
|
|
|
|
|
|
|
|
|
|
|
|
export const WEB_APP_SHARE_CODE_HEADER_NAME = 'X-App-Code'
|
|
|
|
|
|
|
2023-05-15 00:51:32 +00:00
|
|
|
|
export const DEFAULT_VALUE_MAX_LEN = 48
|
2023-09-09 16:12:34 +00:00
|
|
|
|
export const DEFAULT_PARAGRAPH_VALUE_MAX_LEN = 1000
|
2023-05-15 00:51:32 +00:00
|
|
|
|
|
2023-06-01 15:19:36 +00:00
|
|
|
|
export const zhRegex = /^[\u4E00-\u9FA5]$/m
|
2023-05-22 02:39:51 +00:00
|
|
|
|
export const emojiRegex = /^[\uD800-\uDBFF][\uDC00-\uDFFF]$/m
|
2024-06-17 13:32:59 +00:00
|
|
|
|
export const emailRegex = /^[\w.!#$%&'*+\-/=?^{|}~]+@([\w-]+\.)+[\w-]{2,}$/m
|
2024-09-08 05:14:11 +00:00
|
|
|
|
const MAX_ZN_VAR_NAME_LENGTH = 8
|
|
|
|
|
|
const MAX_EN_VAR_VALUE_LENGTH = 30
|
2023-05-15 00:51:32 +00:00
|
|
|
|
export const getMaxVarNameLength = (value: string) => {
|
2025-12-23 08:58:55 +00:00
|
|
|
|
if (zhRegex.test(value))
|
|
|
|
|
|
return MAX_ZN_VAR_NAME_LENGTH
|
2023-06-01 15:19:36 +00:00
|
|
|
|
|
2024-09-08 05:14:11 +00:00
|
|
|
|
return MAX_EN_VAR_VALUE_LENGTH
|
2023-05-15 00:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-09-08 05:14:11 +00:00
|
|
|
|
export const MAX_VAR_KEY_LENGTH = 30
|
2023-10-12 15:14:28 +00:00
|
|
|
|
|
|
|
|
|
|
export const MAX_PROMPT_MESSAGE_LENGTH = 10
|
2023-05-15 00:51:32 +00:00
|
|
|
|
|
|
|
|
|
|
export const VAR_ITEM_TEMPLATE = {
|
|
|
|
|
|
key: '',
|
|
|
|
|
|
name: '',
|
|
|
|
|
|
type: 'string',
|
2023-06-01 15:19:36 +00:00
|
|
|
|
required: true,
|
2023-05-15 00:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-08 10:51:46 +00:00
|
|
|
|
export const VAR_ITEM_TEMPLATE_IN_WORKFLOW = {
|
|
|
|
|
|
variable: '',
|
|
|
|
|
|
label: '',
|
|
|
|
|
|
type: InputVarType.textInput,
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const VAR_ITEM_TEMPLATE_IN_PIPELINE = {
|
|
|
|
|
|
variable: '',
|
|
|
|
|
|
label: '',
|
|
|
|
|
|
type: PipelineInputVarType.textInput,
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
options: [],
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-25 08:59:47 +00:00
|
|
|
|
export const appDefaultIconBackground = '#D5F5F6'
|
|
|
|
|
|
|
|
|
|
|
|
export const NEED_REFRESH_APP_LIST_KEY = 'needRefreshAppList'
|
2023-11-18 03:53:35 +00:00
|
|
|
|
|
|
|
|
|
|
export const DATASET_DEFAULT = {
|
2024-07-24 04:50:48 +00:00
|
|
|
|
top_k: 4,
|
|
|
|
|
|
score_threshold: 0.8,
|
2023-11-18 03:53:35 +00:00
|
|
|
|
}
|
2023-12-18 07:41:24 +00:00
|
|
|
|
|
|
|
|
|
|
export const APP_PAGE_LIMIT = 10
|
|
|
|
|
|
|
|
|
|
|
|
export const ANNOTATION_DEFAULT = {
|
|
|
|
|
|
score_threshold: 0.9,
|
|
|
|
|
|
}
|
2024-01-23 11:31:56 +00:00
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_AGENT_SETTING = {
|
|
|
|
|
|
enabled: false,
|
2025-05-29 01:51:56 +00:00
|
|
|
|
max_iteration: 10,
|
2024-01-23 11:31:56 +00:00
|
|
|
|
strategy: AgentStrategy.functionCall,
|
|
|
|
|
|
tools: [],
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export const DEFAULT_AGENT_PROMPT = {
|
2024-10-09 02:22:20 +00:00
|
|
|
|
chat: `Respond to the human as helpfully and accurately as possible.
|
2024-01-23 11:31:56 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
{{instruction}}
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
You have access to the following tools:
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
{{tools}}
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
Use a json blob to specify a tool by providing an {{TOOL_NAME_KEY}} key (tool name) and an {{ACTION_INPUT_KEY}} key (tool input).
|
|
|
|
|
|
Valid "{{TOOL_NAME_KEY}}" values: "Final Answer" or {{tool_names}}
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
Provide only ONE action per $JSON_BLOB, as shown:
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
\`\`\`
|
|
|
|
|
|
{
|
|
|
|
|
|
"{{TOOL_NAME_KEY}}": $TOOL_NAME,
|
|
|
|
|
|
"{{ACTION_INPUT_KEY}}": $ACTION_INPUT
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
Follow this format:
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2025-09-11 05:17:50 +00:00
|
|
|
|
Question: input question to answer
|
|
|
|
|
|
Thought: consider previous and subsequent steps
|
|
|
|
|
|
Action:
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
$JSON_BLOB
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
Observation: action result
|
|
|
|
|
|
... (repeat Thought/Action/Observation N times)
|
|
|
|
|
|
Thought: I know what to respond
|
|
|
|
|
|
Action:
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
{
|
|
|
|
|
|
"{{TOOL_NAME_KEY}}": "Final Answer",
|
|
|
|
|
|
"{{ACTION_INPUT_KEY}}": "Final response to human"
|
|
|
|
|
|
}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
Begin! Reminder to ALWAYS respond with a valid json blob of a single action. Use tools if necessary. Respond directly if appropriate. Format is Action:\`\`\`$JSON_BLOB\`\`\`then Observation:.`,
|
2024-01-23 11:31:56 +00:00
|
|
|
|
completion: `
|
2025-09-11 05:17:50 +00:00
|
|
|
|
Respond to the human as helpfully and accurately as possible.
|
2024-01-23 11:31:56 +00:00
|
|
|
|
|
|
|
|
|
|
{{instruction}}
|
|
|
|
|
|
|
|
|
|
|
|
You have access to the following tools:
|
|
|
|
|
|
|
|
|
|
|
|
{{tools}}
|
|
|
|
|
|
|
|
|
|
|
|
Use a json blob to specify a tool by providing an {{TOOL_NAME_KEY}} key (tool name) and an {{ACTION_INPUT_KEY}} key (tool input).
|
|
|
|
|
|
Valid "{{TOOL_NAME_KEY}}" values: "Final Answer" or {{tool_names}}
|
|
|
|
|
|
|
|
|
|
|
|
Provide only ONE action per $JSON_BLOB, as shown:
|
|
|
|
|
|
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
{{{{
|
|
|
|
|
|
"{{TOOL_NAME_KEY}}": $TOOL_NAME,
|
|
|
|
|
|
"{{ACTION_INPUT_KEY}}": $ACTION_INPUT
|
|
|
|
|
|
}}}}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
Follow this format:
|
|
|
|
|
|
|
|
|
|
|
|
Question: input question to answer
|
|
|
|
|
|
Thought: consider previous and subsequent steps
|
|
|
|
|
|
Action:
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
$JSON_BLOB
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
Observation: action result
|
|
|
|
|
|
... (repeat Thought/Action/Observation N times)
|
|
|
|
|
|
Thought: I know what to respond
|
|
|
|
|
|
Action:
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
{{{{
|
|
|
|
|
|
"{{TOOL_NAME_KEY}}": "Final Answer",
|
|
|
|
|
|
"{{ACTION_INPUT_KEY}}": "Final response to human"
|
|
|
|
|
|
}}}}
|
|
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
|
|
|
|
Begin! Reminder to ALWAYS respond with a valid json blob of a single action. Use tools if necessary. Respond directly if appropriate. Format is Action:\`\`\`$JSON_BLOB\`\`\`then Observation:.
|
|
|
|
|
|
Question: {{query}}
|
|
|
|
|
|
Thought: {{agent_scratchpad}}
|
|
|
|
|
|
`,
|
|
|
|
|
|
}
|
2024-04-08 10:51:46 +00:00
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const VAR_REGEX
|
2025-12-23 08:58:55 +00:00
|
|
|
|
= /\{\{(#[\w-]{1,50}(\.\d+)?(\.[a-z_]\w{0,29}){1,10}#)\}\}/gi
|
2024-07-19 04:54:15 +00:00
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const resetReg = () => (VAR_REGEX.lastIndex = 0)
|
2024-10-09 02:22:20 +00:00
|
|
|
|
|
2026-02-09 06:57:23 +00:00
|
|
|
|
export const HITL_INPUT_REG = /\{\{(#\$output\.(?:[a-z_]\w{0,29}){1,10}#)\}\}/gi
|
|
|
|
|
|
export const resetHITLInputReg = () => HITL_INPUT_REG.lastIndex = 0
|
|
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const DISABLE_UPLOAD_IMAGE_AS_ICON = env.NEXT_PUBLIC_DISABLE_UPLOAD_IMAGE_AS_ICON
|
2025-01-02 10:36:49 +00:00
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const GITHUB_ACCESS_TOKEN
|
2026-02-10 09:55:11 +00:00
|
|
|
|
= env.NEXT_PUBLIC_GITHUB_ACCESS_TOKEN
|
2025-02-17 09:05:13 +00:00
|
|
|
|
|
|
|
|
|
|
export const SUPPORT_INSTALL_LOCAL_FILE_EXTENSIONS = '.difypkg,.difybndl'
|
2025-01-02 10:36:49 +00:00
|
|
|
|
export const FULL_DOC_PREVIEW_LENGTH = 50
|
2025-03-05 09:41:15 +00:00
|
|
|
|
|
2025-04-18 08:53:43 +00:00
|
|
|
|
export const JSON_SCHEMA_MAX_DEPTH = 10
|
2025-03-26 06:17:59 +00:00
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const MAX_TOOLS_NUM = env.NEXT_PUBLIC_MAX_TOOLS_NUM
|
|
|
|
|
|
export const MAX_PARALLEL_LIMIT = env.NEXT_PUBLIC_MAX_PARALLEL_LIMIT
|
|
|
|
|
|
export const TEXT_GENERATION_TIMEOUT_MS = env.NEXT_PUBLIC_TEXT_GENERATION_TIMEOUT_MS
|
|
|
|
|
|
export const LOOP_NODE_MAX_COUNT = env.NEXT_PUBLIC_LOOP_NODE_MAX_COUNT
|
|
|
|
|
|
export const MAX_ITERATIONS_NUM = env.NEXT_PUBLIC_MAX_ITERATIONS_NUM
|
|
|
|
|
|
export const MAX_TREE_DEPTH = env.NEXT_PUBLIC_MAX_TREE_DEPTH
|
2025-09-18 04:49:10 +00:00
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const ALLOW_UNSAFE_DATA_SCHEME = env.NEXT_PUBLIC_ALLOW_UNSAFE_DATA_SCHEME
|
|
|
|
|
|
export const ENABLE_WEBSITE_JINAREADER = env.NEXT_PUBLIC_ENABLE_WEBSITE_JINAREADER
|
|
|
|
|
|
export const ENABLE_WEBSITE_FIRECRAWL = env.NEXT_PUBLIC_ENABLE_WEBSITE_FIRECRAWL
|
|
|
|
|
|
export const ENABLE_WEBSITE_WATERCRAWL = env.NEXT_PUBLIC_ENABLE_WEBSITE_WATERCRAWL
|
|
|
|
|
|
export const ENABLE_SINGLE_DOLLAR_LATEX = env.NEXT_PUBLIC_ENABLE_SINGLE_DOLLAR_LATEX
|
2025-06-24 08:48:33 +00:00
|
|
|
|
|
|
|
|
|
|
export const VALUE_SELECTOR_DELIMITER = '@@@'
|
2025-07-11 11:18:18 +00:00
|
|
|
|
|
2025-12-23 08:58:55 +00:00
|
|
|
|
export const validPassword = /^(?=.*[a-z])(?=.*\d)\S{8,}$/i
|
2025-09-11 05:17:50 +00:00
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const ZENDESK_WIDGET_KEY = getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_ZENDESK_WIDGET_KEY,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
)
|
2025-09-11 05:17:50 +00:00
|
|
|
|
export const ZENDESK_FIELD_IDS = {
|
2025-09-18 04:49:10 +00:00
|
|
|
|
ENVIRONMENT: getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_ZENDESK_FIELD_ID_ENVIRONMENT,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
),
|
|
|
|
|
|
VERSION: getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_ZENDESK_FIELD_ID_VERSION,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
),
|
|
|
|
|
|
EMAIL: getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_ZENDESK_FIELD_ID_EMAIL,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
),
|
|
|
|
|
|
WORKSPACE_ID: getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_ZENDESK_FIELD_ID_WORKSPACE_ID,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
),
|
|
|
|
|
|
PLAN: getStringConfig(
|
2026-02-10 09:55:11 +00:00
|
|
|
|
env.NEXT_PUBLIC_ZENDESK_FIELD_ID_PLAN,
|
2025-09-18 04:49:10 +00:00
|
|
|
|
'',
|
|
|
|
|
|
),
|
2025-09-11 05:17:50 +00:00
|
|
|
|
}
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const APP_VERSION = pkg.version
|
|
|
|
|
|
|
2026-02-10 09:55:11 +00:00
|
|
|
|
export const IS_MARKETPLACE = env.NEXT_PUBLIC_IS_MARKETPLACE
|
2025-11-12 09:59:37 +00:00
|
|
|
|
|
2025-09-18 04:49:10 +00:00
|
|
|
|
export const RAG_PIPELINE_PREVIEW_CHUNK_NUM = 20
|
2025-09-19 07:47:52 +00:00
|
|
|
|
|
|
|
|
|
|
export const PROVIDER_WITH_PRESET_TONE = ['langgenius/openai/openai', 'langgenius/azure_openai/azure_openai']
|
|
|
|
|
|
|
|
|
|
|
|
export const STOP_PARAMETER_RULE: ModelParameterRule = {
|
|
|
|
|
|
default: [],
|
|
|
|
|
|
help: {
|
|
|
|
|
|
en_US: 'Up to four sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.',
|
|
|
|
|
|
zh_Hans: '最多四个序列,API 将停止生成更多的 token。返回的文本将不包含停止序列。',
|
|
|
|
|
|
},
|
|
|
|
|
|
label: {
|
|
|
|
|
|
en_US: 'Stop sequences',
|
|
|
|
|
|
zh_Hans: '停止序列',
|
|
|
|
|
|
},
|
|
|
|
|
|
name: 'stop',
|
|
|
|
|
|
required: false,
|
|
|
|
|
|
type: 'tag',
|
|
|
|
|
|
tagPlaceholder: {
|
|
|
|
|
|
en_US: 'Enter sequence and press Tab',
|
|
|
|
|
|
zh_Hans: '输入序列并按 Tab 键',
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
2025-11-20 07:58:05 +00:00
|
|
|
|
|
|
|
|
|
|
export const PARTNER_STACK_CONFIG = {
|
|
|
|
|
|
cookieName: 'partner_stack_info',
|
|
|
|
|
|
saveCookieDays: 90,
|
|
|
|
|
|
}
|