35 lines
843 B
TypeScript
35 lines
843 B
TypeScript
/*
|
||
* This file is part of the kernelstudio package.
|
||
*
|
||
* (c) 2014-2026 zlin <admin@kernelstudio.com>
|
||
*
|
||
* For the full copyright and license information, please view the LICENSE file
|
||
* that was distributed with this source code.
|
||
*/
|
||
|
||
import type { ModelDeduction } from './types';
|
||
|
||
export const defaultModelDeduction = {
|
||
// 推演记录ID
|
||
id: null,
|
||
deductionId: null,
|
||
// 部署模型路径
|
||
deploymentModelPath: null,
|
||
// 对抗轮数配置
|
||
competitionRound: null,
|
||
// 对抗场次配置
|
||
competitionSession: 1,
|
||
// 推演倍数设置
|
||
deductionMultiple: 1,
|
||
// 并发调度配置
|
||
balanceStrategy: 1,
|
||
// 对抗模式选择
|
||
competitionMode: 1,
|
||
// 蓝方名称
|
||
blueNames: null,
|
||
// 红方名称
|
||
redNames: null,
|
||
// 数据状态(1-正常,0-已删除)
|
||
status: null,
|
||
stopped: false,
|
||
} as ModelDeduction; |