planting runtime seeds

This commit is contained in:
Jacob Dubin
2026-03-23 07:51:32 -05:00
parent 8381b401a7
commit 34178c71f1
38 changed files with 330 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
namespace Jibo.Runtime.Abstractions;
public sealed class ResponsePlan
{
public string PlanId { get; init; } = Guid.NewGuid().ToString("N");
public string SessionId { get; init; } = string.Empty;
public ResponseStatus Status { get; init; } = ResponseStatus.Succeeded;
public string? IntentName { get; init; }
public string? Topic { get; init; }
public IList<PlanAction> Actions { get; init; } = new List<PlanAction>();
public FollowUpPolicy FollowUp { get; init; } = FollowUpPolicy.None;
public IDictionary<string, object?> ContextUpdates { get; init; } = new Dictionary<string, object?>();
public string? DebugRoute { get; init; }
public IDictionary<string, object?> Diagnostics { get; init; } = new Dictionary<string, object?>();
}