ingest_data_tool
Loads video data from a specified directory into the Ragie index for natural language search, ensuring full ingestion before proceeding.
Instructions
Loads data from a directory into the Ragie index. Wait until the data is fully ingested before continuing.
Args:
directory (str): The directory to load data from.
Returns:
str: A message indicating that the data was loaded successfully.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory | Yes |
Input Schema (JSON Schema)
{
"properties": {
"directory": {
"title": "Directory",
"type": "string"
}
},
"required": [
"directory"
],
"title": "ingest_data_toolArguments",
"type": "object"
}