{
  "tool_id": "llm_vendor_lock_in_cost",
  "slug": "llm-vendor-lock-in-cost",
  "path": "/llm-vendor-lock-in-cost/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/llm-vendor-lock-in-cost/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/llm-vendor-lock-in-cost.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/llm-vendor-lock-in-cost/",
  "sample_input": {
    "tool": "llm_vendor_lock_in_cost",
    "current_monthly_spend_usd": 8000,
    "prompt_complexity": 6,
    "eval_suite_size": 80,
    "retraining_engineering_hours": 40,
    "downtime_days": 2,
    "hourly_engineering_cost": 150,
    "new_vendor_discount_percent": 30
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "current_monthly_spend_usd": {
        "type": "number"
      },
      "prompt_complexity": {
        "type": "number"
      },
      "eval_suite_size": {
        "type": "number"
      },
      "retraining_engineering_hours": {
        "type": "number"
      },
      "downtime_days": {
        "type": "number"
      },
      "hourly_engineering_cost": {
        "type": "number"
      },
      "new_vendor_discount_percent": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "current_monthly_spend_usd",
      "prompt_complexity",
      "eval_suite_size",
      "retraining_engineering_hours",
      "downtime_days",
      "hourly_engineering_cost",
      "new_vendor_discount_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "promptRewriteHours": {
        "type": "number"
      },
      "evalRewriteHours": {
        "type": "number"
      },
      "totalEngineeringHours": {
        "type": "number"
      },
      "engineeringDollarCost": {
        "type": "number"
      },
      "downtimeOpportunityCost": {
        "type": "number"
      },
      "totalSwitchingCost": {
        "type": "number"
      },
      "monthsOfSpendEquivalent": {
        "type": "number"
      },
      "monthlySavingsAtDiscount": {
        "type": "number"
      },
      "paybackMonths": {
        "type": "number"
      }
    }
  }
}
