get_slice_from_object_store
Retrieve a slice of a string or list stored in the object store by specifying the object ID and optional start, end indices, and navigation path.
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 |