Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V2 #115

Merged
merged 36 commits into from
Feb 11, 2025
Merged

V2 #115

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
134e842
chore: Bump version
paul-paliychuk Oct 31, 2024
b380824
SDK regeneration
fern-api[bot] Oct 31, 2024
5126185
chore: Add license
paul-paliychuk Oct 31, 2024
9299519
chore: Add license
paul-paliychuk Oct 31, 2024
1d02637
Merge branch 'v2' of github.com:getzep/zep-js into v2
paul-paliychuk Oct 31, 2024
bbbd2a6
chore: Bump version
paul-paliychuk Nov 6, 2024
c21e921
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Nov 6, 2024
cf3a3dd
SDK regeneration
fern-api[bot] Nov 6, 2024
60a37c9
chore: Update memory example
paul-paliychuk Nov 6, 2024
0c979cb
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Nov 15, 2024
650c14d
chore: Version bump
paul-paliychuk Nov 15, 2024
b824eb9
SDK regeneration
fern-api[bot] Nov 15, 2024
a7df046
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Dec 10, 2024
7f18f70
chore: Version bump
paul-paliychuk Dec 10, 2024
5beb828
SDK regeneration
fern-api[bot] Dec 10, 2024
4fe139a
SDK regeneration
fern-api[bot] Dec 10, 2024
af520ec
chore: unignore package json and yarn.lock
paul-paliychuk Jan 9, 2025
c9e6578
update version
paul-paliychuk Jan 9, 2025
15156b5
SDK regeneration
fern-api[bot] Jan 9, 2025
5040b20
chore: Add package.json and yarn.lock to fernignore
paul-paliychuk Jan 9, 2025
aa688a4
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Jan 9, 2025
a917023
chore: remove package json from fernignore
paul-paliychuk Jan 9, 2025
c9f8d19
SDK regeneration
fern-api[bot] Jan 10, 2025
5b01630
chore: Update heading
paul-paliychuk Jan 10, 2025
1bd9bc9
fix: tests
paul-paliychuk Jan 10, 2025
f8e0cfb
fix: prepack command
paul-paliychuk Jan 10, 2025
e397ab0
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Jan 10, 2025
7f0ad8b
fix: prepack command
paul-paliychuk Jan 10, 2025
f6b59bc
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Jan 17, 2025
18ef395
chore: Version bump
paul-paliychuk Jan 17, 2025
3f635ce
Merge branch 'main' of github.com:getzep/zep-js into v2
paul-paliychuk Feb 10, 2025
3f44e96
chore: Remove vercel AI example (in a dedicated repo now)
paul-paliychuk Feb 10, 2025
aefd6ed
SDK regeneration
fern-api[bot] Feb 10, 2025
ec02356
SDK regeneration
fern-api[bot] Feb 11, 2025
054538a
chore: Version bump
paul-paliychuk Feb 11, 2025
0705a09
SDK regeneration
fern-api[bot] Feb 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions examples/graph/user_graph_example.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,19 @@ async function main() {
console.log("Getting all user facts");
const userFacts = await client.user.getFacts(userId);
console.log(userFacts.facts);

const {node: userNode} = await client.user.getNode(userId)
if (userNode) {
console.log("User node: ", userNode)
const userCenteredSearch = await client.graph.search({
userId,
query: "User preferences",
centerNodeUuid: userNode.uuid,
reranker: "node_distance",
})
console.log("User centered search results", userCenteredSearch.edges)
}

}

main().catch(console.error);
41 changes: 0 additions & 41 deletions examples/vercel_ai/.gitignore

This file was deleted.

72 changes: 0 additions & 72 deletions examples/vercel_ai/README.md

This file was deleted.

16 changes: 0 additions & 16 deletions examples/vercel_ai/eslint.config.mjs

This file was deleted.

7 changes: 0 additions & 7 deletions examples/vercel_ai/next.config.ts

This file was deleted.

33 changes: 0 additions & 33 deletions examples/vercel_ai/package.json

This file was deleted.

Loading