from dedalus_labs import AsyncDedalus, DedalusRunnerclient = AsyncDedalus()runner = DedalusRunner(client)response = await runner.run(inputThe task for the runner to execute.="Ship a release",
modelRoute any model without rewrites.=["gpt-5.2", "claude-opus-4.5"],
mcp_serversConnect to hosted MCP services instantly.=["github", "brave-search"],
toolsAdd custom tools to the runner.=['search_files', 'find_image'])import Dedalus, { DedalusRunner } from 'dedalus-labs';
const client = new Dedalus();const runner = new DedalusRunner(client);const response = await runner.run({inputThe task for the runner to execute.:"Ship a release",
modelRoute any model without rewrites.:['gpt-5.2', 'claude-opus-4.5'],
mcpServersConnect to hosted MCP services instantly.:['github', 'brave-search'],
toolsAdd custom tools to the runner.:['search_files', 'find_image']});