Crates.io | human_language_toolkit_chatbot |
lib.rs | human_language_toolkit_chatbot |
version | 0.1.1 |
source | src |
created_at | 2021-06-13 08:43:01.537557 |
updated_at | 2021-06-13 08:52:33.606337 |
description | NLTK like chatbot made with pure rust. |
homepage | https://github.com/HectorPulido/human-language-toolkit-chatbot |
repository | https://github.com/HectorPulido/human-language-toolkit-chatbot |
max_upload_size | |
id | 409511 |
size | 15,363 |
This is a regex powered chatbot made in rust, it is based in NLTK https://github.com/nltk/nltk/blob/develop/nltk/chat/util.py
add to your Cargo.toml file
[dependencies]
...
human_language_toolkit_chatbot = "0.1.0"
...
You can find the updated version at https://crates.io/crates/human_language_toolkit_chatbot
You can read from a json file.
use human_language_toolkit_chatbot::{Chatbot, ChatbotError, CompiledChatbot};
...
let suntsu = Chatbot::from_file(String::from("bots/suntsu.json")).unwrap();
...
Also you can create the bot by programming.
...
let mut pairs: Vec<(String, Vec<String>)> = Vec::new();
pairs.push((
String::from(r"Hello(.*)"),
vec![
String::from("Hello... I'm glad you could drop by today."),
String::from("Hi there... how are you today?"),
String::from("Hello, how are you feeling today?"),
],
));
pairs.push((
String::from(r"(.*) sorry (.*)"),
vec![
String::from("There are many times when no apology is needed."),
String::from("What feelings do you have when you apologize?"),
],
));
...
let fallback = vec![String::from("Sorry I didn't understand")];
let reflections = Chatbot::default_reflections();
let eliza = Chatbot {
pairs,
fallback,
reflections,
};
// You can save your model in a .json file
match eliza.to_file(String::from("bots/eliza.json")) {
Ok(_) => (),
Err(e) => println!("error at {}", e),
}
let eliza = eliza.compile();
You can talk with the bot with the function respond
but you can also use the converse
function to make an infinity conversation.