gpt4 book ai didi

azure - TeamsBot 没有对话引用

转载 作者:行者123 更新时间:2023-12-03 07:03:41 27 4
gpt4 key购买 nike

我有 Teams Bot,其代码非常类似于 proactive messages from ms docs 的示例。当我在本地运行机器人时 - 无论是使用机器人模拟器,还是在 Azure 中注册的 Ngrok + Teams Bot,通知都会按预期工作。当我将机器人发布到 Azure(作为应用服务)时,它没有用于发送主动消息的对话引用。
我的通知 Controller 看起来与示例相同,我只是添加了打印有多少个转换引用。

public class NotifyController : ControllerBase {
private readonly IBotFrameworkHttpAdapter _adapter;
private readonly string _appId;
private readonly ConcurrentDictionary<string, ConversationReference> _conversationReferences;

public NotifyController(IBotFrameworkHttpAdapter adapter, IConfiguration configuration, ConcurrentDictionary<string, ConversationReference> conversationReferences) {
_adapter = adapter;
_conversationReferences = conversationReferences;
_appId = configuration["MicrosoftAppId"] ?? "<my-app-id>";
}

public async Task<IActionResult> Get() {
foreach (var conversationReference in _conversationReferences.Values) {
Debug.WriteLine($"awaiting callback from convdId({conversationReference.Conversation.Id}) from user {conversationReference.User.Name}{conversationReference.User.Id}");
await ((BotAdapter)_adapter).ContinueConversationAsync(_appId, conversationReference, BotCallback, default);
}

return new ContentResult() {
Content = $"<html><body><h1>Proactive messages have been sent to {_conversationReferences.Count} conversations.</h1></body></html>",
ContentType = "text/html",
StatusCode = (int)HttpStatusCode.OK,
};
}

private async Task BotCallback(ITurnContext turnContext, CancellationToken cancellationToken) {
await turnContext.SendActivityAsync("proactive hello", cancellationToken: cancellationToken);
}
}

Startup.cs 中的配置服务:

public void ConfigureServices(IServiceCollection services) {
services.AddHttpClient().AddControllers().AddNewtonsoftJson();
services.AddSingleton<IBotFrameworkHttpAdapter, AdapterWithErrorHandler>();
services.AddSingleton<IStorage, MemoryStorage>();
services.AddSingleton<UserState>();
services.AddSingleton<ConversationState>();
services.AddSingleton<MainDialog>();
services.AddTransient<IBot, DialogBot<MainDialog>>();
services.AddSingleton<ConcurrentDictionary<string, ConversationReference>>();
}

在Bot代码中还有函数(注释的函数是否未注释并不重要,行为是相同的):

public override async Task OnTurnAsync(ITurnContext turnContext, CancellationToken cancellationToken = default) {
await base.OnTurnAsync(turnContext, cancellationToken);
//AddConversationReference(turnContext.Activity as Activity);
await ConversationState.SaveChangesAsync(turnContext, false, cancellationToken);
await UserState.SaveChangesAsync(turnContext, false, cancellationToken);
}
...
private void AddConversationReference(Activity activity) {
var conversationReference = activity.GetConversationReference();
ConversationReferences.AddOrUpdate(conversationReference.User.Id, conversationReference, (key, newValue) => conversationReference);
}

protected override Task OnConversationUpdateActivityAsync(ITurnContext<IConversationUpdateActivity> turnContext, CancellationToken cancellationToken) {
AddConversationReference(turnContext.Activity as Activity);
return base.OnConversationUpdateActivityAsync(turnContext, cancellationToken);
}

我不知道引用在哪里设置来调查为什么没有设置:/在本地运行,我可以看到适当数量的对话。
我还添加了日志以查看是否 comments of Hilton Giesenow适用;看起来对话引用没有设置,所以我没有任何数据可以保存。有时(不知道什么情况下)调用OnTurnAsync然后对话引用中有数据。

最佳答案

您使用的只是一个示例,因此它是为了教授重要概念,但并不意味着在生产中 100% 使用。例如,在示例中,它将应用程序的所有数据存储在内存中(请注意这一行: services.AddSingleton<IStorage, MemoryStorage>(); )。这意味着所存储的信息(如对话引用)仅在应用程序运行时可用,并且仅在其运行的单台计算机上可用。

对于生产场景,您需要将这些对话引用保存到“持久”存储(只要您需要就可以持续使用),例如数据库或某种文件存储。然后您可以在需要时从该存储中检索它,例如发送主动消息。

与此相关的是,当您将某些内容存储在永久位置时,通常需要对其进行“键入”,这意味着以一种您将来可以根据需要唯一地找到每条记录的方式存储它。对于 Teams 机器人,为用户使用 AadObjectId 是一个很好的起点,因为它对于每个用户都是唯一的。

关于azure - TeamsBot 没有对话引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71831343/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com