-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# TODO | ||
|
||
inspired by mem0 | ||
|
||
- [ ] upsert memory | ||
- [ ] agency to demo the thing | ||
- [ ] dep on prisma | ||
- [ ] expose methods to CRUD mems | ||
- [ ] visualize memos in demo | ||
|
||
## Definition of Success | ||
|
||
able to dump in facts and see blobs show up in relation to each other | ||
|
||
## Examples | ||
|
||
- "I went to Balthazar with G on the 10th of March 2023" | ||
- "my cousin Suzy does not like cranberries" | ||
- "I am vegan. ... (2 hours _later_) I am no longer vegan." |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
console.log("Hello world!"); | ||
export const memory = () => 'memory' |
This file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import {expect, test} from 'bun:test' | ||
import {memory} from '../' | ||
|
||
test('exports a function', () => { | ||
expect(typeof memory).toBe('function') | ||
}) |