get_slice_from_object_store
Retrieve a substring or sublist from a stored object using start and end indices. Optionally navigate nested paths to access specific slices.
Instructions
Extract a slice from a string or list object that is stored in the object store.
:param object_id: Identifier of the object. :param start: Start index for slicing. :param end: End index for slicing (optional - leave empty to get slice from start to end of sequence). :param path: Navigation path to object to slice (optional). :return: String representation of the slice.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| object_id | Yes | ||
| start | No | ||
| end | No | ||
| path | No |