{
  "tool_id": "embeddings_db_cost",
  "slug": "embeddings-db-cost",
  "path": "/embeddings-db-cost/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/embeddings-db-cost/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/embeddings-db-cost.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/embeddings-db-cost/",
  "sample_input": {
    "tool": "embeddings_db_cost",
    "vector_count": 1000000,
    "dim": 1536,
    "queries_per_day": 50000,
    "ingest_per_day": 5000
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "vector_count": {
        "type": "number"
      },
      "dim": {
        "type": "number"
      },
      "queries_per_day": {
        "type": "number"
      },
      "ingest_per_day": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "vector_count",
      "dim",
      "queries_per_day",
      "ingest_per_day"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "vendors": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "vendor": {
              "type": "string"
            },
            "monthlyCost": {
              "type": "number"
            },
            "notes": {
              "type": "string"
            }
          }
        }
      },
      "cheapestVendor": {
        "type": "string"
      },
      "cheapestMonthlyCost": {
        "type": "number"
      },
      "storageGb": {
        "type": "number"
      }
    }
  }
}
