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
| import crypto from 'node:crypto' | |
| type MemoNamespace = { | |
| /** | |
| * Namespace expiration date is expiresAt of the last entry | |
| */ | |
| expiresAt: Date | |
| entries: Map<string, MemoEntry> | |
| } |
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
| """ | |
| title: Anthropic Manifold Pipe | |
| author: justinh-rahb | |
| author_url: https://github.com/justinh-rahb | |
| funding_url: https://github.com/open-webui | |
| version: 0.1.5 | |
| license: MIT | |
| """ | |
| import os |