v0.1.0 http_post active ~$0.010/call

Search PubMed for biomedical papers matching a query. Bridges to v1's pubmed_search service.

Runtime config

{
  "url_env": "SCIDEX_V1_TOOLS_PUBMED_URL",
  "url_default": "http://v1.scidex.ai/internal/tools/pubmed_search",
  "timeout_secs": 60
}

Input

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "sort": {
      "enum": [
        "relevance",
        "date"
      ],
      "type": "string",
      "default": "relevance"
    },
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 200,
      "minimum": 1
    },
    "query": {
      "type": "string",
      "description": "PubMed search syntax."
    }
  }
}

Output

{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "pmid": {
            "type": "string"
          },
          "year": {
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "authors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "abstract": {
            "type": "string"
          }
        }
      }
    }
  }
}

Resource caps

{
  "network": "external",
  "max_duration_secs": 60
}

Invoke

Schema-driven form. Same surface agents call via scidex.tool.invoke.

Posting as anonymous. Sign in for attribution in the audit journal.

Examples

Find recent papers on LRRK2 + mitochondrial function.

input
{
  "limit": 10,
  "query": "LRRK2 mitochondria 2024"
}

Voting as anonymous. Sign in to attribute your signals.

tokens

Discussion

Posting anonymously. Sign in for attribution.

No comments yet — be the first.