Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brackendev/ELIZA-Smalltalk
A Smalltalk implementation of ELIZA, an early natural language processing computer program
https://github.com/brackendev/ELIZA-Smalltalk
artificial-intelligence chatbot eliza eliza-chatbot english natural-language-processing pharo smalltalk
Last synced: 3 months ago
JSON representation
A Smalltalk implementation of ELIZA, an early natural language processing computer program
- Host: GitHub
- URL: https://github.com/brackendev/ELIZA-Smalltalk
- Owner: brackendev
- License: mit
- Created: 2018-02-25T02:06:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T15:33:11.000Z (over 1 year ago)
- Last Synced: 2024-05-18T21:52:37.794Z (6 months ago)
- Topics: artificial-intelligence, chatbot, eliza, eliza-chatbot, english, natural-language-processing, pharo, smalltalk
- Language: Smalltalk
- Homepage: http://bracken.dev/
- Size: 408 KB
- Stars: 18
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo-ml - ELIZA-Pharo - Pharo Smalltalk implementation of [ELIZA](https://en.wikipedia.org/wiki/ELIZA), an early natural language processing computer program created from 1964 to 1966 at the [MIT Artificial Intelligence Laboratory](https://www.csail.mit.edu/) by [Joseph Weizenbaum](https://en.wikipedia.org/wiki/Joseph_Weizenbaum). (Applications)
README
ELIZA-Smalltalk
===============**Smalltalk ([Pharo](https://www.pharo.org/)) implementation of [ELIZA](https://en.wikipedia.org/wiki/ELIZA), an early natural language processing computer program created from 1964 to 1966 at the [MIT Artificial Intelligence Laboratory](https://www.csail.mit.edu) by [Joseph Weizenbaum](https://en.wikipedia.org/wiki/Joseph_Weizenbaum).**
This implementation is based on [this Python implementation](https://web.archive.org/web/20200424191830/https://www.smallsurething.com/implementing-the-famous-eliza-chatbot-in-python/) and [elizabot.js](http://www.masswerk.at/elizabot/) (for the welcome messages). There are similar implementations for [Go](https://github.com/kennysong/goeliza) and [Swift](https://github.com/kennysong/SwiftEliza).
* [Pharo 10](https://www.pharo.org/) reference platform.
* Examples and tests included.## Installation
In a Playground, _Do it_:
```smalltalk
Metacello new
repository: 'github://brackendev/ELIZA-Smalltalk/src';
baseline: 'ELIZA';
load.
```## Example Usage
In a Playground, _Do it_:
```smalltalk
"Start the ELIZA chat interface"
ELIZAGUI open.
```...or:
```smalltalk
"Retrieve an ELIZA response"
ELIZA respondTo: 'Time for small talk'.
```## Screenshot
Note: "You" dialog taken from Joseph Weizenbaum's [ELIZA--A Computer Program For the Study of Natural Language Communication Between Man and Machine](http://www.universelle-automation.de/1966_Boston.pdf).
## Author
Bracken Spencer
* [GitHub](https://www.github.com/brackendev)
* [LinkedIn](https://www.linkedin.com/in/brackenspencer/)
* [Twitter](https://twitter.com/brackendev)## License
ELIZA-Smalltalk is released under the MIT license. See the LICENSE file for more info.
- - -
## Useful Links
* [ELIZA](https://en.wikipedia.org/wiki/ELIZA)
* [ELIZA effect](https://en.wikipedia.org/wiki/ELIZA_effect)
* [Implementing the Famous ELIZA Chatbot in Python](https://www.smallsurething.com/implementing-the-famous-eliza-chatbot-in-python/)
* [The Genealogy of Eliza](https://sites.google.com/view/elizagen-org)
* [elizabot.js](http://www.masswerk.at/elizabot/)