繁体   English   中英

在 Azure 上测试 Echo 聊天机器人时出错

[英]error while testing the Echo Chat Bot on Azure

我正在关注https://towardsdatascience.com/creating-a-serverless-python-chatbot-api-in-microsoft-azure-from-scratch-in-9-easy-steps-2f1913fc9581创建 python我的源代码如下,但是当我尝试运行它时,我得到了一个错误。 根据存储库,错误是适配器的 on_error 处理程序接收到由机器人的轮流逻辑引发的任何异常。 如果抛出异常,处理程序会删除当前对话的对话 state,以防止机器人陷入由于错误的 state 导致的错误循环。 任何专家可以帮助解决这个问题?

       using System.Collections.Generic;                 
       using System.Threading;           
       using System.Threading.Tasks;          
       using Microsoft.Bot.Builder;          
       using Microsoft.Bot.Schema;          
       using System.Net;       
       using System;         
       using System.Net.Http;          
       using System.Text;  // for class Encoding         
       using System.IO;               
       using Newtonsoft.Json;                 
       using Newtonsoft.Json.Serialization;     
            

       namespace Microsoft.BotBuilderSamples.Bots
       {
           public class EchoBot : ActivityHandler
           {
               public class FlaskRequestModel
               {
                   [JsonProperty("text")]
                   public string Text {get; set;}            
        
               }

               protected override async Task OnMessageActivityAsync(ITurnContext<IMessageActivity>                       turnContext, CancellationToken cancellationToken)
               {           
                   var replyText = $"{turnContext.Activity.Text}";
                   //if (!replyText.ToLower().Contains("Hey Bot")){  # Optional bit of code that only sends the sends the message to the back end if it contains a particular keyword
                   //    return;
                   //}
                   var replyTextModel = new FlaskRequestModel()
                   {
                       Text = replyText 
                   };

                   var jsonObject = JsonConvert.SerializeObject(replyTextModel);
    
                   var request = new HttpRequestMessage()
                   {

                       Content = new StringContent(jsonObject, Encoding.UTF8, "application/json"),
                       Method = HttpMethod.Post,
                       RequestUri = new Uri("yudao.azurewebsites.net"),   //  <- Replace the URL with the the URL for your function app
                   };            
    
                   var httpClient = new HttpClient();
                   // httpClient.DefaultRequestHeaders.Add("API-Key","your API-key");  <- required if your HTTP trigger authorization was set to something other than Anonymous
                   var response = await httpClient.SendAsync(request, HttpCompletionOption.ResponseContentRead);      
    
                   if (response.IsSuccessStatusCode)
                   {
                       var responseString = await response.Content.ReadAsStringAsync();
                       await turnContext.SendActivityAsync(MessageFactory.Text(responseString, responseString), cancellationToken);
                   }
                   else
                   {
                       await turnContext.SendActivityAsync(MessageFactory.Text("failure", "failure"), cancellationToken);
                       var responseString = await response.Content.ReadAsStringAsync();
                       await turnContext.SendActivityAsync(MessageFactory.Text(responseString, responseString), cancellationToken);   
                   }
    
               }
           }    
       }

尝试使用正则表达式:

A2 = "12 15|||Pform|||their|||REQUIRED|||-NONE-|||0"
intval=[val for val in A2.split('|||') if bool(re.search(pattern='\d+', string=val))]

Output:

['12 15', '0']

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM