Give me the best recommended way to create a ppt presentation using openclaw on topic AI Model Architectures Used for Object Detection.
I have a locally hosted model Qwen/Qwen3-30B-A3B-Instruct-2507 with 64K context Length.
I have already have below config.json file
"agents": {
"defaults": {
"compaction": {
"reserveTokensFloor": 13107
},
"workspace": "/home/qcom/.openclaw/workspace",
"models": {
"vllm/meta-llama/Llama-3.3-70B-Instruct": {},
"vllm/Qwen/Qwen3-30B-A3B-Instruct-2507": {},
"openrouter/auto": {
"alias": "OpenRouter"
},
"openrouter/meta-llama/llama-3.3-70b-instruct:free": {}
},
"model": {
"primary": "vllm/Qwen/Qwen3-30B-A3B-Instruct-2507"
}
}
}
"models": {
"mode": "merge",
"providers": {
"vllm": {
"baseUrl": "http://192.168.75.81:8000/v1",
"api": "openai-completions",
"apiKey": "VLLM_API_KEY",
"models": [
{
"id": "Qwen/Qwen3-30B-A3B-Instruct-2507",
"name": "Qwen/Qwen3-30B-A3B-Instruct-2507",
"reasoning": true,
"input": [
"text"
],
"cost": {
"input": 0,
"output": 0,
"cacheRead": 0,
"cacheWrite": 0
},
"contextWindow": 65536,
"maxTokens": 16384
}
]
}
}
}
Give me the easiest simple way.