searchOrganizationContents
Search an organization's content database using semantic queries to locate relevant information efficiently.
Instructions
Search through the organization's content database using semantic search
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| query | Yes | The search query | 
Input Schema (JSON Schema)
{
  "additionalProperties": false,
  "properties": {
    "query": {
      "description": "The search query",
      "type": "string"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}