diff --git a/setup_venv.sh b/setup_venv.sh index de4d636..5e7b93c 100755 --- a/setup_venv.sh +++ b/setup_venv.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/zsh # Setup Python virtual environment in the new config directory VENV_DIR="$HOME/.config/syui/ai/gpt/venv" @@ -15,4 +15,9 @@ pip install -e . echo "Setup complete!" echo "To activate the virtual environment, run:" -echo "source ~/.config/syui/ai/gpt/venv/bin/activate" \ No newline at end of file +echo "source ~/.config/syui/ai/gpt/venv/bin/activate" + +if [ -z "`$SHELL -i -c \"alias aigpt\"`" ]; then + echo 'alias aigpt="$HOME/.config/syui/ai/gpt/venv/bin/aigpt"' >> ${HOME}/.$(basename $SHELL)rc + exec $SHELL +fi diff --git a/src/aigpt.egg-info/SOURCES.txt b/src/aigpt.egg-info/SOURCES.txt index dbf5c14..9ca9aea 100644 --- a/src/aigpt.egg-info/SOURCES.txt +++ b/src/aigpt.egg-info/SOURCES.txt @@ -11,6 +11,7 @@ src/aigpt/mcp_server_simple.py src/aigpt/memory.py src/aigpt/models.py src/aigpt/persona.py +src/aigpt/project_manager.py src/aigpt/relationship.py src/aigpt/scheduler.py src/aigpt/transmission.py