chore: initialize project structure with empty repository and default files

This commit is contained in:
2025-01-20 03:29:17 +00:00
commit 984a23f0f8
12 changed files with 466 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
DEMO_REPLIKA = .venv/bin/ragent.demo_replika
DEMO_DISCUSS = .venv/bin/ragent.demo_discuss
PIP = .venv/bin/pip
default:
@echo "Hi, there are two commands to run: demo_replika and demo_discuss."
@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)