mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-19 15:46:02 +00:00
planting runtime seeds
This commit is contained in:
10
OpenJibo/src/Jibo.Runtime.Abstractions/SpeakAction.cs
Normal file
10
OpenJibo/src/Jibo.Runtime.Abstractions/SpeakAction.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user