Documentation Index
Fetch the complete documentation index at: https://docs.aiybiz.com/llms.txt
Use this file to discover all available pages before exploring further.
Environment variables
Core
| Variable | Required | Description |
|---|
AIYBIZ_URL | Yes | Aiybiz API base URL (e.g. https://api.aiybiz.com) |
AIYBIZ_SESSION_ID | Yes | The session ID to handle |
OpenClaw bridge
| Variable | Required | Description |
|---|
OPENCLAW_URL | Yes (if using OpenClaw) | OpenClaw gateway URL (e.g. http://localhost:8080) |
OPENCLAW_TOKEN | Yes (if using OpenClaw) | OpenClaw authentication token |
LLM provider (for deploy-openclaw)
| Variable | Required | Description |
|---|
OPENCLAW_PROVIDER_KEY | Yes | LLM provider API key |
OPENCLAW_MODEL | Yes | Model name (e.g. gpt-4o, claude-sonnet-4-6) |
OPENCLAW_PROVIDER_BASE_URL | No | Override LLM provider base URL (defaults to OpenAI) |
Example .env file
# Aiybiz
AIYBIZ_URL=https://api.aiybiz.com
AIYBIZ_SESSION_ID=sess_abc123
# OpenClaw
OPENCLAW_URL=http://localhost:8080
OPENCLAW_TOKEN=tok_...
OPENCLAW_PROVIDER_KEY=sk-...
OPENCLAW_MODEL=gpt-4o
Validation
Run npx aiybiz check to validate all required variables are set and the API is reachable.