DEMO_REPLIKA = .venv/bin/ragent.demo_replika DEMO_DISCUSS = .venv/bin/ragent.demo_discuss DEMO_BATCH_MESSAGES = .venv/bin/ragent.demo_batch_messages PIP = .venv/bin/pip default: @echo "Hi, there are three commands to run: demo_replika, demo_discuss and demo_batch_messages." @echo "Before running these commands, you need to run 'make install'." install: @echo "Creating virtual environment." python3 -m venv .venv @echo "Installing python dependencies." $(PIP) install -e . demo_replika: @echo "Executing Replika Demo." $(DEMO_REPLIKA) demo_discuss: @echo "Executing Discussion Demo." $(DEMO_DISCUSS) demo_batch_messages: @echo "Executing Batch Messages Demo." $(DEMO_BATCH_MESSAGES)