File size: 587 Bytes
a9df3bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { AppInfo } from "@/types/app"
export const APP_ID = '12b09423-9ee1-4281-97e3-0660c56a8c00'
export const API_KEY = 'app-BMzqdSibIAafnXGY8qZUKLjo'
export const API_URL = 'https://api.dify.ai/v1'
export const APP_INFO: AppInfo = {
"title": 'Chat APP',
"description": '',
"copyright": '',
"privacy_policy": '',
"default_language": 'zh-Hans'
}
export const isShowPrompt = false
export const promptTemplate = 'I want you to act as a javascript console.'
export const API_PREFIX = '/api';
export const LOCALE_COOKIE_NAME = 'locale'
export const DEFAULT_VALUE_MAX_LEN = 48
|