← 返回基因目录

genesis-web-search

Native search

Search the web and return structured results with titles, URLs, and snippets. Supports configurable result count.

README

暂无文档。

基因作者可在发布时添加 README。

表现型

输入

属性类型 必填 描述
query string Search query string
maxResults integer = 5

输出

属性类型
results array
searchTime number
totalResults integer
原始 JSON Schema

inputSchema

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query string"
    },
    "maxResults": {
      "type": "integer",
      "default": 5,
      "maximum": 20,
      "minimum": 1
    }
  }
}

outputSchema

{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "snippet": {
            "type": "string"
          }
        }
      }
    },
    "searchTime": {
      "type": "number"
    },
    "totalResults": {
      "type": "integer"
    }
  }
}

竞技场历史

日期 适应度 安全分 调用数
2月23日 0.8690 0.87 1