# eliza **Repository Path**: mirrors_deckarep/eliza ## Basic Information - **Project Name**: eliza - **Description**: Python implementation of the Eliza chatbot - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-20 - **Last Updated**: 2026-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Eliza chatbot in Python Loosely based on Charles Hayden's version in Java, at http://chayden.net/eliza/Eliza.html. I feel that it is fairly complete. However there are some holes, as the library was written immediately prior to my discovery of Joseph Weizenbaum's own description of the original program, which is quite detailed, along with the original "doctor" script. Oh well. A copy of that article is provided in the repo as a reference to the correct behavior. ## Usage Can be run interactively: ``` $ python eliza.py How do you do. Please tell me your problem. > I would like to have a chat bot. You say you would like to have a chat bot ? > bye Goodbye. Thank you for talking to me. ``` ...or imported and used as a library: ```python import eliza eliza = eliza.Eliza() eliza.load('doctor.txt') print(eliza.initial()) while True: said = input('> ') response = eliza.respond(said) if response is None: break print(response) print(eliza.final()) ```