#Damian Gavin: 10007969@gmit.ie
Chatbot in Golang
In this project I have created a chatbot web application in Go. Users will be able to visit the web application through their browser, type in sentences such as “Hi, my name is John.” and the web application will reply with sentences such as “Hello John, how are you?”
- data folder, containing eliza responses
- eliza folder containing my code for reading and responding to user input, also contains my "reflections"
- static folder containing my index.html and my javascript file
- main.go, contining my main method. Deals with http requests.
- This readMe file
- MIT licence
This repository can be found at https://github.com/DamianGavin/projectEliza
First you must have "Go" on your computer. This can be found and downloaded at https://golang.org/. If you navigate to the folder that contains these files you can type : go run .\main.go to run the code.
Describe and show how to run the tests with code examples. EXAMPLE
Some links that I used to help me with this assignment
- https://stackoverflow.com/questions/9348326/regex-find-word-in-the-string
- https://regex101.com/
- https://www.smallsurething.com/implementing-the-famous-eliza-chatbot-in-python/
- https://gist.github.com/ianmcloughlin/c4c2b8dc586d06943f54b75d9e2250fe
- https://golang.org/doc/articles/wiki/
- https://github.com/data-representation/go-ajax/blob/master/webapp.go
- https://www.smallsurething.com/implementing-the-famous-eliza-chatbot-in-python