main.py [167:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            latest_intents[conver_id] = [None]

        predicted_intents, texts = output.split('->')
        intents = predicted_intents[1:-2].split('<div>')
        tokens = texts.strip().split(' ')
        word_list = []
        label_list = []
        for t in tokens:
            if t.startswith('[') and t.endswith(']') and ':' in t:
                colon_idx = t.rindex(':')
                word_list.append(t[1:colon_idx])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



main.py [262:272]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            latest_intents[conver_id] = [None]

        predicted_intents, texts = output.split('->')
        intents = predicted_intents[1:-2].split('<div>')
        tokens = texts.strip().split(' ')
        word_list = []
        label_list = []
        for t in tokens:
            if t.startswith('[') and t.endswith(']') and ':' in t:
                colon_idx = t.rindex(':')
                word_list.append(t[1:colon_idx])
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



