# rasa-conversational-ai **Repository Path**: xiaozha/rasa-conversational-ai ## Basic Information - **Project Name**: rasa-conversational-ai - **Description**: Conversational AI based on Rasa - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-04 - **Last Updated**: 2021-02-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Getting Started ![](asset/xbot.jpg) ## Usage 1. Install require packages ``` curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - poetry install python -m pip install -U pip pip3 install rasa-x --extra-index-url https://pypi.rasa.com/simple ``` refer to: [poetry documentation](https://python-poetry.org/docs/) and newest [official Rasa NLU document](https://rasa.com/docs/) 2. Train model by running: If you specify your project name in configure file, this will save your model at /models/your_project_name. Otherwise, your model will be saved at /models/default ``` rasa train --num-threads 4 ``` 5. Run the raas action server: ``` rasa run actions ``` 6. Open a new terminal and now you can curl results from the server, for example: ``` rasa x ``` 7. Chat with your Conversational AI and Enjoy/Develop it.