Merge · Schema

ToolSearchRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
intent string User's intent or what they want to accomplish
connector_slugs array Optional list of connector slugs to filter the search
max_results integer Maximum number of results to return
View JSON Schema on GitHub

JSON Schema

merge-toolsearchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolSearchRequest",
  "title": "ToolSearchRequest",
  "type": "object",
  "properties": {
    "intent": {
      "type": "string",
      "description": "User's intent or what they want to accomplish"
    },
    "connector_slugs": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional list of connector slugs to filter the search"
    },
    "max_results": {
      "type": "integer",
      "default": 10,
      "description": "Maximum number of results to return"
    }
  },
  "required": [
    "intent"
  ]
}