Skip to content

A productive chatbot development engine, where we can build chatbots in simple way without spend time.

Notifications You must be signed in to change notification settings

assisfery/Julia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A productive chatbot development engine,
where we can build chatbots in simple
way without spend time.

Documentation | GitHub

Web Chatbot

Start developing your chatbot in easy and practical way.

<?php

	include "../lib/WebBot.php";

	use Julia\WebBot;
	use Julia\Message;

	// create the bot
	$myBot = new WebBot();

	// handle the received message
	$myBot->listen();

	// when the bot get a message that contains "hello"
	// it will respond "Hello my friend"
	$myBot->hears("hello", function($bot){

		$bot->answer(new Message("text", "Hello my friend"));

	});

	// send all responses
	$myBot->respond();

?>

Donate


Buy Me A Coffee



Contribute

Come contribute with us and let's make the world a better place.

Others

Icons made by Freepik from www.flaticon.com

About

A productive chatbot development engine, where we can build chatbots in simple way without spend time.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published