company_search
Search for company-specific documents and data across multiple sources like Drive, Confluence, and Jira using a structured query.
Instructions
Find relevant company documents and data
Example request:
{
"query": "What are the company holidays this year?",
"datasources": ["drive", "confluence"]
}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasources | No | Optional list of data sources to search in. Examples: "github", "gdrive", "confluence", "jira". | |
query | Yes | The search query. This is what you want to search for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"datasources": {
"description": "Optional list of data sources to search in. Examples: \"github\", \"gdrive\", \"confluence\", \"jira\".",
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"description": "The search query. This is what you want to search for.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}