planting runtime seeds
This commit is contained in:
11
OpenJibo/src/Jibo.Runtime.Abstractions/FollowUpPolicy.cs
Normal file
11
OpenJibo/src/Jibo.Runtime.Abstractions/FollowUpPolicy.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Jibo.Runtime.Abstractions;
|
||||
|
||||
public sealed class FollowUpPolicy
|
||||
{
|
||||
public static FollowUpPolicy None => new() { KeepMicOpen = false, Timeout = TimeSpan.Zero };
|
||||
|
||||
public bool KeepMicOpen { get; init; }
|
||||
public TimeSpan Timeout { get; init; }
|
||||
public string? ExpectedTopic { get; init; }
|
||||
public IDictionary<string, object?> Hints { get; init; } = new Dictionary<string, object?>();
|
||||
}
|
||||
Reference in New Issue
Block a user