get_from_object_store
Retrieve objects from the object store using an object ID or access nested fields by specifying a path like 'user_info.given_name'.
Instructions
Use this tool to fetch an object from the object store.
You can fetch a specific object by using the object's id (e.g. @obj_001).
You can also fetch any nested path by using the path-parameter
(e.g. {"object_id": "@obj_001", "path": "user_info.given_name"}
-> returns the content at obj.user_info.given_name).
:param object_id: The id of the object to fetch in the format @obj_001.
:param path: The path of the object to fetch in the format of access.to.attr or ["access"]["to"]["attr"].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | No | ||
| object_id | Yes |