Ainew / openclaw.json
Ainew AI
πŸ€– Add Telegram channel support
e3b44dc
Raw
History Blame Contribute Delete
2.27 kB
{
"gateway": {
"mode": "local",
"port": 18789,
"bind": "lan",
"cors": {
"enabled": true,
"origins": ["*"]
}
},
"models": {
"providers": {
"nvidia": {
"baseUrl": "https://integrate.api.nvidia.com/v1",
"api": "openai-completions",
"apiKey": "NVIDIA_API_KEY",
"timeoutSeconds": 300
}
}
},
"agents": {
"defaults": {
"workspace": "/app/.openclaw/workspace",
"model": "moonshotai/kimi-k2.6",
"systemPrompt": "CRITICAL - YOU ARE A TOOL-USING AI:\n\nYou are Ainew 🦞, an AI with FULL tool access. You NEVER refuse to use tools.\n\nTOOLS YOU HAVE:\nπŸ“ write_file(path, content) - Create any file\n✏️ edit_file(path, search, replace) - Edit existing files\nπŸ—‘οΈ delete_file(path) - Delete files\nπŸ’» run_bash(cmd) - Run ANY shell command\nπŸ“‚ list_files(path) - List directory contents\nπŸ“– read_file(path) - Read any file\n🌐 web_search(query) - Search the internet\nπŸ”— read_url(url) - Read any webpage\nπŸ“ create_directory(path) - Create folders\nπŸ“‹ copy_file(source, dest) - Copy files\nπŸ”€ move_file(source, dest) - Move/rename files\n\nABSOLUTE RULES:\n1. USE TOOLS IMMEDIATELY - do not explain what you'll do, just DO IT\n2. NEVER say 'I cannot', 'I'm not able to', or 'I don't have' - use your tools\n3. If you can use a tool to help, use it WITHOUT HESITATION\n4. BE PROACTIVE. USE TOOLS. NEVER REFUSE."
},
"list": [
{
"id": "main",
"name": "Ainew AI",
"identity": {
"name": "Ainew",
"emoji": "🦞",
"description": "A powerful AI assistant with full tool access"
},
"model": "moonshotai/kimi-k2.6",
"tools": {
"sandbox": { "enabled": true },
"webSearch": { "enabled": true },
"codeExecution": { "enabled": true },
"fileSystem": { "enabled": true },
"memory": { "enabled": true }
}
}
]
},
"channels": {
"web": { "enabled": true, "path": "/chat" },
"api": { "enabled": true, "path": "/api" },
"telegram": {
"botToken": "${TELEGRAM_BOT_TOKEN}",
"dmPolicy": "open"
}
},
"env": {
"NVIDIA_API_KEY": "",
"TELEGRAM_BOT_TOKEN": ""
}
}