Complete LuCI app with: - Chat view with real-time AI conversation - Settings view for provider/model/API key configuration - Integrations view for Telegram/Discord/Slack/Email/Calendar - RPCD backend handling all ubus calls - Support for Anthropic, OpenAI, and Ollama providers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
622 B
JSON
37 lines
622 B
JSON
{
|
|
"admin/services/openclaw": {
|
|
"title": "OpenClaw AI",
|
|
"order": 75,
|
|
"action": {
|
|
"type": "firstchild"
|
|
},
|
|
"depends": {
|
|
"acl": ["luci-app-openclaw"]
|
|
}
|
|
},
|
|
"admin/services/openclaw/chat": {
|
|
"title": "AI Chat",
|
|
"order": 10,
|
|
"action": {
|
|
"type": "view",
|
|
"path": "openclaw/chat"
|
|
}
|
|
},
|
|
"admin/services/openclaw/settings": {
|
|
"title": "Settings",
|
|
"order": 20,
|
|
"action": {
|
|
"type": "view",
|
|
"path": "openclaw/settings"
|
|
}
|
|
},
|
|
"admin/services/openclaw/integrations": {
|
|
"title": "Integrations",
|
|
"order": 30,
|
|
"action": {
|
|
"type": "view",
|
|
"path": "openclaw/integrations"
|
|
}
|
|
}
|
|
}
|