Files
JiboExperiments/OpenJibo/src/Jibo.Runtime.Abstractions/SpeakAction.cs

10 lines
344 B
C#
Raw Normal View History

2026-03-23 07:51:32 -05:00
namespace Jibo.Runtime.Abstractions;
public sealed class SpeakAction : PlanAction
{
public override PlanActionType Type => PlanActionType.Speak;
public string Text { get; init; } = string.Empty;
public string? Voice { get; init; }
public string? Style { get; init; }
public bool CanBeInterrupted { get; init; } = true;
}