semantic_search
Find semantically related content in user-configured documents using OpenAI Embeddings. Input a query and optional limit to retrieve the most relevant results efficiently.
Instructions
意味的に関連する内容を検索
Args:
query: 検索クエリ
limit: 返す結果の最大数(デフォルト: 5)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "semantic_searchArguments",
"type": "object"
}