This guide will get you from zero to a running OpenPawz instance in about 5 minutes.
Prerequisites
- Node.js 18+ β Download here
- Git β Download here
- An API key from Anthropic (Claude) or OpenAI (GPT-4)
Quick Install
# Clone the repo
git clone https://github.com/kenzic/openpawz.git
cd openpawz
# Install dependencies
npm install
# Copy the example config
cp .env.example .env
# Edit .env and add your API keys
nano .env
# Start OpenPawz
npm start
Configure Your Provider
Edit .env and set your preferred LLM:
For Claude (Recommended)
LLM_PROVIDER=anthropic
ANTHROPIC_API_KEY=sk-ant-xxxxx
For OpenAI
LLM_PROVIDER=openai
OPENAI_API_KEY=sk-xxxxx
For Ollama (Local)
LLM_PROVIDER=ollama
OLLAMA_MODEL=llama3
First Run
Once started, youβll see the OpenPawz prompt. Try:
> What can you do?
> Help me draft an email
> What's the weather?
Next Steps
Browse Skills β Add new capabilities
Read the Docs β Go deeper
Ask Questions β Weβre here to help!
Having trouble? Reply below or post in Questions!