Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/281.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 在RASA核心/NLU中获取意图值_Python_Rasa Nlu_Rasa Core - Fatal编程技术网

Python 在RASA核心/NLU中获取意图值

Python 在RASA核心/NLU中获取意图值,python,rasa-nlu,rasa-core,Python,Rasa Nlu,Rasa Core,问候语 我正在研究RASA chatbot。我使用下面的代码处理特定目的的自定义操作。在自定义操作中,我希望获得当前的意图值。所以我不知道哪行代码能给我当前意图的价值 #this file will be used to all custom actions from __future__ import absolute_import from __future__ import division from __future__ import unicode_literals import

问候语 我正在研究RASA chatbot。我使用下面的代码处理特定目的的自定义操作。在自定义操作中,我希望获得当前的意图值。所以我不知道哪行代码能给我当前意图的价值

#this file will be used to all custom actions

from  __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
import requests
import json
from zeep import Client


from random import randint
from rasa_core.actions.action import Action
from rasa_core.events import SlotSet

class ActionWeather(Action):


RANDOMIZE = False

@staticmethod
def required_fields():
    return [
        EntityFormField("period", "period"),
        EntityFormField("product", "product")
    ]


def name(self):
    return 'action_weather'

def run(self,dispatcher, tracker, domain):

    #Get Slot values
    loc = tracker.get_slot('period')
    pro = tracker.get_slot('product')
    custname= tracker.get_slot('custName')

    #Here I want to get Intent Values as well same like slot value in above code  
    #  So what is code for getting intent value



    #make json
    data = {}
    data['period'] = loc
    data['product'] = pro



    json_data = json.dumps(data)
    jsonobj= json.loads(json_data)


    #code for SOAP
    client = Client('my webservice URL/testsoap?wsdl')
    result = client.service.getData(json_data)
    print('**********************')
    print(result)
    print('#######################')
    jsonobj= json.loads(result)


    #print(response.content)
    #json_response = response.json()
    #print (json_response)
    result1=jsonobj[0]['result']
    #result1=randint(1, 100)
    #result='X'
    response = """sale is {} """.format(result1)
    dispatcher.utter_message(response)
    #return [SlotSet('location',loc)]
    return []

我想在RASA Core中获取当前和最后的intent值,方法与在python自定义操作代码中获取slot value
product=tracker.get_slot('product')
的方法相同。请提供帮助。

您可以使用以下内容

currentIntent=tracker.latest_message.intent[“name”]

这对我来说很有用:

def run(self,dispatcher, tracker, domain):
    intent =  tracker.latest_message['intent'].get('name')
rasa核心0.11.12
rasa核心sdk 0.11.5
rasa nlu 0.13.7

intent = json.dumps(tracker.latest_message.intent)
print(intent)
#particular intent name
print(json.loads(intent)['intent']['name'])
结果 (u'{“信心”:0.9092543377510975,“姓名”:“问候”})

或者试试这个

        intent = json.dumps(tracker.latest_message.__dict__)