prop change
This commit is contained in:
parent
71d97a5d8e
commit
833fffe722
|
|
@ -114,6 +114,10 @@ public class Agent
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool MergeUtility { get; set; }
|
public bool MergeUtility { get; set; }
|
||||||
|
|
||||||
|
/// <summary>When true, the CodeGraph (code-intelligence) standard tools are loaded into
|
||||||
|
/// this agent at load time (see w4c_chatapi.Services.CodeGraphToolsHook).</summary>
|
||||||
|
public bool CodeGraphEnabled { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Agent Utility
|
/// Agent Utility
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -184,6 +188,7 @@ public class Agent
|
||||||
IsPublic = agent.IsPublic,
|
IsPublic = agent.IsPublic,
|
||||||
Disabled = agent.Disabled,
|
Disabled = agent.Disabled,
|
||||||
MergeUtility = agent.MergeUtility,
|
MergeUtility = agent.MergeUtility,
|
||||||
|
CodeGraphEnabled = agent.CodeGraphEnabled,
|
||||||
MaxMessageCount = agent.MaxMessageCount,
|
MaxMessageCount = agent.MaxMessageCount,
|
||||||
Profiles = agent.Profiles,
|
Profiles = agent.Profiles,
|
||||||
Labels = agent.Labels,
|
Labels = agent.Labels,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue