RasaGPT
💬 RasaGPT is the first headless LLM chatbot platform built on top of Rasa and Langchain. Built w/ Rasa, FastAPI, Langchain, LlamaIndex, SQLModel, pgvector, ngrok, telegram
File Explorer
Download Latest Version (.zip)- org-about_the_company.md
- org-board_of_directors.md
- org-company_story.md
- org-corporate_philosophy.md
- org-customer_support.md
- org-earnings_fy2023.md
- org-management_team.md
- project-frogonil.md
- project-kekzal.md
- project-memegen.md
- project-memetrex.md
- project-neurokek.md
- project-pepetamine.md
- project-pepetrak.md
- rasagpt-icon-200x200.png
- rasagpt-logo-1.png
- rasagpt-logo-2.png
- .dockerignore
- API.md
- config.py
- Dockerfile
- helpers.py
- llm.py
- main.py
- Makefile
- models.py
- requirements.txt
- seed.py
- util.py
- create_db.sh
- Dockerfile
- __init__.py
- actions.py
- Dockerfile
- nlu.yml
- rules.yml
- stories.yml
- .dockerignore
- config.yml
- credentials.yml
- custom_telegram.py
- domain.yml
- endpoints.yml
- ngrok.yml
- requirements.txt
- rules.yml
- .dockerignore
- Dockerfile
- main.py
- requirements.txt
- wait-for-it.sh
- api.png
- cli_install.png
- container_logs.png
- documents.png
- makefile-1.png
- makefile-2.png
- ngrok-admin.png
- org-projects.png
- orgs.png
- rasagpt-banner.png
- rasagpt-icon-200x200.png
- rasagpt-logo-1.png
- rasagpt-logo-2.png
- rasagpt-video-title-screen.png
- telegram.png
- title.png
- .env-example
- .gitignore
- docker-compose.yml
- LICENSE
- Makefile
- README.md
- RESULTS.md
# Installation Guide
git clone https://github.com/paulpierre/RasaGPT
Downloads the entire project code from GitHub to your computer.
cd RasaGPT
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose up -d --build
Builds and starts all defined containers (server, database, etc.) at once, in the background.
3. Python
Easypip install -r app/api/requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <실행할 파일명>.py # README에서 정확한 실행 파일명을 확인하세요
Runs the Python script (or module).
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make install
Compiles the code based on the generated build configuration to produce an executable.
make
Compiles the code based on the generated build configuration to produce an executable.
make run
Compiles the code based on the generated build configuration to produce an executable.
make restart
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
