conda env create --name ai-agent-askus --file environment.yml
conda activate ai-agent-askus
conda env update --file environment.yml --prune
# Config for ITS RAG
embedding: "dunzhang/stella_en_1.5B_v5" # Hugging Face embedding model, additional libraries may need to be installed to use other models
llm: "gemma2:27b" # Ollama model https://ollama.com/search
This may take a while depending on which embedding model you use.
cd model
python reload_database.py
cd model
python agent_demo.py
cd web
npm install
npm run dev
cd web-scraper
scrapy crawl manoa -O data/urls.json
docker run \
--publish=7474:7474 --publish=7687:7687 \
--volume=$HOME/neo4j/data:/data \
neo4j