Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Evincere/klisk/llms.txt
Use this file to discover all available pages before exploring further.
Overview
TheFileSearch class provides semantic file search capabilities for agents using vector stores. This builtin tool is only supported with OpenAI models and requires vector store IDs to be configured.
Class Definition
src/klisk/core/builtin_tools.py:24
Parameters
List of vector store IDs to search through. This parameter is required and must contain at least one vector store ID.Example:
["vs_abc123", "vs_def456"]Maximum number of search results to return. When
None, the provider’s default limit is used.Usage
Basic Usage with Vector Store IDs
Multiple Vector Stores
Custom Max Results
Multiple Builtin Tools
Important Notes
The
vector_store_ids parameter must contain at least one valid vector store ID, or a ValueError will be raised at runtime.