ChatterBot Python 聊天机器人框架

我要开发同款
匿名用户2017年03月11日
42阅读
开发技术Python
所属分类服务器软件、电话/通讯/IM聊天
授权协议BSD

作品详情

ChatterBot是一个Python库,用于简化聊天机器人的开发。ChatterBot使用不同的机器学习算法来生成不同的响应内容。

示例对话:

user: Good morning! How are you doing?bot:  I am doing very well, thank you for asking.user: You're welcome.bot:  Do you like hats?

处理流程:

示例代码:

# -*- coding: utf-8 -*-from chatterbot import ChatBotimport logging# Uncomment the following line to enable verbose logging# logging.basicConfig(level=logging.INFO)# Create a new instance of a ChatBotbot = ChatBot("Terminal",    storage_adapter="chatterbot.storage.JsonFileStorageAdapter",    logic_adapters=[        "chatterbot.logic.MathematicalEvaluation",        "chatterbot.logic.TimeLogicAdapter",        "chatterbot.logic.BestMatch"    ],    input_adapter="chatterbot.input.TerminalAdapter",    output_adapter="chatterbot.output.TerminalAdapter",    database="../database.db")print("Type something to begin...")# The following loop will execute each time the user enters inputwhile True:    try:        # We pass None to this method because the parameter        # is not used by the TerminalAdapter        bot_input = bot.get_response(None)    # Press ctrl-c or ctrl-d on the keyboard to exit    except (KeyboardInterrupt, EOFError, SystemExit):        break
声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论