Version history

1 version on record. Newest first; the live version sits at the top with a live indicator.

  1. Live 5170fe14d5eb
    4/30/2026, 9:06:34 PM
    Content snapshot
    {
      "version": "0.1.0",
      "summary": "Extract figures + captions from a paper PDF, with optional OCR + caption summarization.",
      "runtime": "http_post",
      "runtime_config": {
        "url_env": "SCIDEX_V1_TOOLS_FIGURE_EXTRACT_URL",
        "url_default": "http://v1.scidex.ai/internal/tools/figure_extract",
        "timeout_secs": 600
      },
      "input_schema": {
        "type": "object",
        "required": [
          "pdf_url"
        ],
        "properties": {
          "ocr": {
            "type": "boolean",
            "default": false
          },
          "pdf_url": {
            "type": "string"
          },
          "summarize_captions": {
            "type": "boolean",
            "default": false
          }
        }
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "figures": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "page": {
                  "type": "integer"
                },
                "caption": {
                  "type": "string"
                },
                "ocr_text": {
                  "type": "string"
                },
                "figure_id": {
                  "type": "string"
                },
                "image_url": {
                  "type": "string"
                },
                "caption_summary": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "resource_caps": {
        "network": "external",
        "memory_peak_mb": 4096,
        "max_duration_secs": 600
      },
      "cost_model": {
        "per_call_usd": 0.1
      },
      "examples": [
        {
          "input": {
            "pdf_url": "https://example.org/paper.pdf",
            "summarize_captions": true
          }
        }
      ],
      "lifecycle_state": "active"
    }