For the complete documentation index, see llms.txt. This page is also available as Markdown.

search_data_storage()

search_data_storage()

Search stored entries by criteria and/or a text query

Arguments

{
  "criteria": {},
  "text_query": "string",
  "limit": 0,
  "offset": 0,
  "filter_logic": "string"
}

Returns

Raw, unvalidated dicts (no Pydantic schema). Keys are not guaranteed by a model definition; access defensively.

[
  {
    "id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "name": "string",
    "description": "string",
    "content": "string",
    "tags": [
      "string"
    ],
    "user_id": "string",
    "dataset_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "parent_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "project_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "project_name": "string",
    "project_description": "string",
    "file_path": "string",
    "is_collection": true,
    "status": "string",
    "share_status": "string",
    "label": "string",
    "path": "string",
    "short_alias": "string",
    "created_at": "2026-06-03T08:00:00Z",
    "modified_at": "2026-06-03T08:00:00Z",
    "metadata": {},
    "embedding": [
      0
    ],
    "score": 0,
    "embedding_similarity": 0,
    "highlights": {},
    "trajectory_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "is_kosmos_project": true
  }
]

Last updated