{
  "tool_id": "runway_with_ai_cost_shock",
  "slug": "runway-with-ai-cost-shock",
  "path": "/runway-with-ai-cost-shock/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/runway-with-ai-cost-shock/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/runway-with-ai-cost-shock.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/runway-with-ai-cost-shock/",
  "sample_input": {
    "tool": "runway_with_ai_cost_shock",
    "current_runway_months": 18,
    "monthly_ai_cost_usd": 12000,
    "monthly_total_burn_usd": 80000,
    "price_shock_percent": 50,
    "revenue_growth_monthly": 8,
    "monthly_revenue_usd": 25000
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "current_runway_months": {
        "type": "number"
      },
      "monthly_ai_cost_usd": {
        "type": "number"
      },
      "monthly_total_burn_usd": {
        "type": "number"
      },
      "price_shock_percent": {
        "type": "number"
      },
      "revenue_growth_monthly": {
        "type": "number"
      },
      "monthly_revenue_usd": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "current_runway_months",
      "monthly_ai_cost_usd",
      "monthly_total_burn_usd",
      "price_shock_percent",
      "revenue_growth_monthly",
      "monthly_revenue_usd"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "shockedMonthlyAiCost": {
        "type": "number"
      },
      "cumulativeAiCostIncreaseAnnual": {
        "type": "number"
      },
      "newMonthlyBurnAtShock": {
        "type": "number"
      },
      "cashOnHand": {
        "type": "number"
      },
      "newRunwayMonths": {
        "type": "number"
      },
      "breakEvenMonthlyRevenue": {
        "type": "number"
      },
      "monthsToBreakEvenAtGrowth": {
        "type": "number"
      }
    }
  }
}
