BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/Agent.cs

31 lines
736 B
C#
Raw Normal View History

2023-06-11 15:22:48 +00:00
namespace BotSharp.Abstraction.Agents.Models;
public class Agent
{
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public DateTime CreatedDateTime { get; set; }
public DateTime UpdatedDateTime { get; set; }
2023-06-23 04:43:00 +00:00
/// <summary>
/// Instruction
/// </summary>
public string Instruction { get; set; }
/// <summary>
/// Samples
/// </summary>
public string Samples { get; set; }
2023-06-29 23:14:57 +00:00
/// <summary>
/// Domain knowledges
/// </summary>
public string Knowledges { get; set;}
2023-06-11 15:22:48 +00:00
/// <summary>
/// Owner user id
/// </summary>
public string OwerId { get; set; } = string.Empty;
}