Quickstart
Quickstart
Section titled “Quickstart”Get up and running with Dewee on your local machine or server in 5 minutes.
1. Build and Initialize
Section titled “1. Build and Initialize”git clone -b main https://github.com/nextlevelbuilder/dewee.gitcd deweemake build./dewee onboardsource .env.local && ./dewee2. Health Check
Section titled “2. Health Check”curl http://localhost:18790/healthExpected response (internal/gateway/server.go:672 and pkg/protocol/frames.go:8):
{"status":"ok","protocol":3}3. Interactive Terminal Chat
Section titled “3. Interactive Terminal Chat”# Start interactive terminal chat with default agent./dewee agent chat4. HTTP API Invocation
Section titled “4. HTTP API Invocation”curl -X POST http://localhost:18790/v1/chat/completions \ -H "Authorization: Bearer $GOCLAW_GATEWAY_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "model": "claude-sonnet-4-20250514", "messages": [{"role": "user", "content": "Hello Dewee!"}] }'