Skip to content

v0.1.12

Compare
Choose a tag to compare
@av av released this 04 Sep 10:40
· 212 commits to main since this release

v0.1.12 - aichat integration

CI
Crates
Discord

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