- ✅ Full integration with Mimir's memory bank
- ✅ Graph functions enable multi-hop reasoning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Recursively transform key/values in object, including array values | |
| * | |
| * Also can act as a basic deep clone method | |
| * @param {Object} obj - Object to transform | |
| * @param {Object} [transforms={}] - Object containing transformation functions | |
| * @param {Function} [transform.keys] - Function for transforming keys from 'obj' | |
| * @param {Function} [transform.values] - Function for transforming values from 'obj' | |
| * @param {Number} [level=0] - Level of recursion, passed as the 2nd argument to a transform function | |
| * @returns {Object} Transformed object |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| foo | |
| bar | |
| baz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This CSS block is a More Effective CSS Image Reset. | |
| * It resets the default styles of an image element | |
| * and adds some additional styles to improve its rendering. | |
| * | |
| * The `max-width: 100%;` ensures that the image does not exceed its container's width, | |
| * while maintaining its aspect ratio with `height: auto;`. | |
| * | |
| * The `vertical-align: middle;` aligns the image vertically with the text. | |
| * |
OlderNewer