You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
525 B
C#

using System;
namespace AI.AgentIntegration
{
/// <summary>
/// 定义代理的操作模式
/// </summary>
public enum AgentMode
{
/// <summary>
/// 观察模式:仅观察用户操作,不主动干预
/// </summary>
Observe,
/// <summary>
/// 协助模式:在用户请求时提供帮助
/// </summary>
Assist,
/// <summary>
/// 控制模式:主动控制系统行为
/// </summary>
Control,
}
}