Comprehensive guides and reference material for the PearBerry CLI tool
PearBerry CLI can be installed using several methods. Choose the one that best fits your environment.
The recommended way to install PearBerry is via npm:
npm install -g pearberry-cli
This makes the pearberry
command available globally on your system.
Alternatively, you can download precompiled binaries from our GitHub releases page:
To verify that PearBerry was installed correctly, run:
pearberry --version
You should see the current version number displayed in your terminal.
Once PearBerry is installed, you can start using it with these basic commands:
pearberry install deepseek-7b
This downloads and installs the specified model (in this case, DeepSeek Coder 7B).
pearberry run
This starts the LLM server with the default model. You can specify a model with --model
flag.
pearberry chat
This opens an interactive chat interface to converse with the running model.
Note: You must have a model running with pearberry run
before using the chat command.
PearBerry can be configured through the config.yaml
file located at ~/.pearberry/config.yaml
.
# PearBerry Configuration File
# Model settings
models:
default: "deepseek-7b"
storage_path: "~/pearberry/models"
# Runtime settings
runtime:
threads: 4
context_length: 4096
temperature: 0.7
# Interface settings
interface:
theme: "dark"
save_history: true
history_file: "~/pearberry/history.json"
You can also modify configuration using the config command:
pearberry config set runtime.threads 8
View current configuration:
pearberry config get
This documentation is a work in progress. Check back for updates!
Download PearBerry CLI now and start exploring the power of local LLMs.