mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 03:58:31 +08:00
35 lines
902 B
TypeScript
35 lines
902 B
TypeScript
import { arch, platform } from '@/sys/index'
|
|
import { compatString } from './compat'
|
|
|
|
export type Channel = 'dev' | 'alpha' | 'edge' | 'rc' | 'stable'
|
|
|
|
export type VersionInfo = {
|
|
version: string
|
|
commit: string
|
|
buildDate: string
|
|
channel: Channel
|
|
}
|
|
|
|
export const versionInfo: VersionInfo = {
|
|
version: __DIFYCTL_VERSION__,
|
|
commit: __DIFYCTL_COMMIT__,
|
|
buildDate: __DIFYCTL_BUILD_DATE__,
|
|
channel: __DIFYCTL_CHANNEL__ as Channel,
|
|
}
|
|
|
|
export function shortVersion(): string {
|
|
return versionInfo.version
|
|
}
|
|
|
|
export function longVersion(): string {
|
|
const { version, commit, buildDate, channel } = versionInfo
|
|
return (
|
|
`difyctl ${version} (commit ${commit.slice(0, 7)}, built ${buildDate}, channel ${channel})\n` +
|
|
`compat: ${compatString()}`
|
|
)
|
|
}
|
|
|
|
export function userAgent(): string {
|
|
return `difyctl/${versionInfo.version} (${platform()}; ${arch()}; ${versionInfo.channel})`
|
|
}
|