Code chatbot bị lỗi AttributeError: module 'time' has no attribute 'clock'

Em đang tập làm chatbot nhưng bị lỗi, ai biết lỗi này thì chỉ em với ạ

#import files
from flask import Flask, render_template, request
from chatterbot import ChatBot
from chatterbot.trainers import ChatterBotCorpusTrainer
from chatterbot.trainers import ListTrainer
app = Flask(__name__)
bot = ChatBot("Python-BOT")
trainer = ListTrainer(bot)
trainer.train(['what is your name?', 'My name is Python-BOT'])
trainer.train(['who are you?', 'I am a BOT'])
trainer = ChatterBotCorpusTrainer(bot)
trainer.train("chatterbot.corpus.english")
@app.route("/")
def index():
    return render_template('index.html')
@app.route("/get")
def get_bot_response():
    userText = request.args.get('msg')
    return str(bot.get_response(userText))
if __name__ == "__main__":
        app.run()

lỗi này có trên gg rồi, chú ý, tự mình làm chứ đừng lên gpt hỏi xong copy vào, không biết gì đâu.

2 Likes
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?