v0.1.12
v0.1.12 - aichat integration
AIChat is an all-in-one AI CLI tool featuring Chat-REPL, Shell Assistant, RAG, AI Tools & Agents, and More.
# [Optional] pre-build the image
harbor build aichat
# Use aichat CLI
harbor aichat -f ./migrations.md how to run migrations?
harbor aichat -e install nvm
harbor aichat -c fibonacci in js
harbor aichat -f https://github.com/av/harbor/wiki/Services list supported services
Misc
Log levels
Harbor now routes all non-parseable logs to stderr
by default. You can also adjust log level for the CLI output (most existing logs are INFO
)
# Show current log level, INFO by default
harbor config get log.level
# Set log level
harbor config set log.level ERROR
# Log levels
# DEBUG | INFO | WARN | ERROR
Ollama modelfiles
Harbor workspace now has a place for custom modelfiles for Ollama.
# See existing modelfiles
ls $(harbor home)/ollama/modelfiles
# Copy custom modelfiles to the workspace
cp /path/to/Modelfile $(harbor home)/ollama/modelfiles/my.Modelfile
# Create custom model from a modelfile
harbor ollama create -f /modelfiles/my.Modelfile my-model
Full Changelog: v0.1.11...v0.1.12