BuiltInAgentId.AIAssistant
This commit is contained in:
parent
b5439b196c
commit
a0a07bac2d
|
|
@ -12,7 +12,7 @@ public partial class ConversationService : IConversationService
|
|||
private readonly IConversationStorage _storage;
|
||||
private readonly IConversationStateService _state;
|
||||
private string _conversationId;
|
||||
private const string AIAssistant = "01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a";
|
||||
private const string AIAssistant = BuiltInAgentId.AIAssistant;
|
||||
|
||||
public string ConversationId => _conversationId;
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ namespace BotSharp.Logger.Hooks
|
|||
{
|
||||
private readonly IServiceProvider _services;
|
||||
private readonly IConversationStateService _states;
|
||||
private const string AIAssistant = "01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a";
|
||||
private const string AIAssistant = BuiltInAgentId.AIAssistant;
|
||||
|
||||
public TranslationResponseHook(IServiceProvider services,
|
||||
IConversationStateService states)
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
using BotSharp.Abstraction.Agents;
|
||||
using BotSharp.Abstraction.Agents.Enums;
|
||||
|
||||
namespace BotSharp.Plugin.PizzaBot.Hooks;
|
||||
|
||||
public class PizzaBotAgentHook : AgentHookBase
|
||||
{
|
||||
public override string SelfId => "01fcc3e5-9af7-49e6-ad7a-a760bd12dc4a";
|
||||
public override string SelfId => BuiltInAgentId.AIAssistant;
|
||||
|
||||
public PizzaBotAgentHook(IServiceProvider services, AgentSettings settings)
|
||||
: base(services, settings)
|
||||
|
|
|
|||
Loading…
Reference in a new issue