plugins/omi-shipbob-app/README.md
A voice-enabled ShipBob integration for Omi that allows users to manage inventory, create Warehouse Receiving Orders (WROs), and track orders using natural language.
Create a .env file with the following variables:
# ShipBob OAuth2 Credentials
SHIPBOB_CLIENT_ID=your_client_id
SHIPBOB_CLIENT_SECRET=your_client_secret
SHIPBOB_REDIRECT_URI=https://your-domain.com/auth/shipbob/callback
# ShipBob API URLs (Production)
SHIPBOB_AUTH_URL=https://auth.shipbob.com/connect/authorize
SHIPBOB_TOKEN_URL=https://auth.shipbob.com/connect/token
SHIPBOB_API_URL=https://api.shipbob.com
# For Sandbox/Testing, use:
# SHIPBOB_AUTH_URL=https://authstage.shipbob.com/connect/authorize
# SHIPBOB_TOKEN_URL=https://authstage.shipbob.com/connect/token
# SHIPBOB_API_URL=https://sandbox-api.shipbob.com
# Redis (for production)
REDIS_URL=redis://localhost:6379
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Run the server
python main.py
When creating the Omi app, use these URLs (replace YOUR_DOMAIN with your deployed URL):
| Setting | URL |
|---|---|
| App Home URL | https://YOUR_DOMAIN/?uid={{uid}} |
| Setup Completed URL | https://YOUR_DOMAIN/setup/shipbob?uid={{uid}} |
| Auth URL | https://YOUR_DOMAIN/auth/shipbob?uid={{uid}} |
| Chat Tools URL | https://YOUR_DOMAIN/.well-known/omi-tools.json |
MIT