mirror of
https://github.com/langgenius/dify.git
synced 2026-07-15 01:17:04 +08:00
30 lines
665 B
TypeScript
30 lines
665 B
TypeScript
import type { LangGeniusVersionInfo } from './app-context-types'
|
|
import type { ICurrentWorkspace } from '@/models/common'
|
|
|
|
export const initialLangGeniusVersionInfo: LangGeniusVersionInfo = {
|
|
current_env: '',
|
|
current_version: '',
|
|
latest_version: '',
|
|
release_date: '',
|
|
release_notes: '',
|
|
version: '',
|
|
features: {
|
|
can_replace_logo: false,
|
|
model_load_balancing_enabled: false,
|
|
},
|
|
can_auto_update: false,
|
|
}
|
|
|
|
export const initialWorkspaceInfo: ICurrentWorkspace = {
|
|
id: '',
|
|
name: '',
|
|
plan: '',
|
|
status: '',
|
|
created_at: 0,
|
|
role: 'normal',
|
|
providers: [],
|
|
trial_credits: 200,
|
|
trial_credits_used: 0,
|
|
next_credit_reset_date: 0,
|
|
}
|