Class AgentInfo
- Namespace
- JD.AI.Dashboard.Wasm.Models
- Assembly
- JD.AI.Dashboard.Wasm.dll
public record AgentInfo : IEquatable<AgentInfo>
- Inheritance
-
AgentInfo
- Implements
-
- Inherited Members
-
Constructors
AgentInfo(string, string, string, int, DateTimeOffset)
public AgentInfo(string Id, string Provider, string Model, int TurnCount, DateTimeOffset CreatedAt)
Parameters
Id string
Provider string
Model string
TurnCount int
CreatedAt DateTimeOffset
Properties
CreatedAt
public DateTimeOffset CreatedAt { get; init; }
Property Value
- DateTimeOffset
Id
public string Id { get; init; }
Property Value
- string
Model
public string Model { get; init; }
Property Value
- string
Provider
public string Provider { get; init; }
Property Value
- string
Status
[JsonPropertyName("status")]
public AgentStatus Status { get; init; }
Property Value
- AgentStatus
TurnCount
public int TurnCount { get; init; }
Property Value
- int