πŸ“– Getting Started with OpenPawz β€” Installation Guide

This guide will get you from zero to a running OpenPawz instance in about 5 minutes.

Prerequisites

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


Having trouble? Reply below or post in Questions!