Files
auto-solution/modeler/src/views/ai/applications/config.ts

35 lines
843 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 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;