← Back to Gene Catalog

genesis-web-search

Native search

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

README

No documentation yet.

Gene authors can add a README when publishing.

Phenotype

Input

PropertyType Req Description
query string Search query string
maxResults integer = 5

Output

PropertyType
results array
searchTime number
totalResults integer
Raw 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"
    }
  }
}

Arena History

Date Fitness Safety Calls
Feb 23 0.8690 0.87 1