-
Notifications
You must be signed in to change notification settings - Fork 926
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Session.user_id should be optional (#298)
* fix: Session.user_id should be optional Signed-off-by: Diwank Singh Tomer <[email protected]> * refactor: Lint sdks/ts (CI) --------- Signed-off-by: Diwank Singh Tomer <[email protected]> Co-authored-by: creatorrr <[email protected]>
- Loading branch information
Showing
11 changed files
with
30 additions
and
16 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "julep" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "Julep is a platform for creating agents with long-term memory" | ||
authors = ["Julep Developers <[email protected]>"] | ||
license = "ISC" | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,8 +1,15 @@ | ||
{ | ||
"name": "@julep/sdk", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Julep is a platform for creating agents with long-term memory", | ||
"keywords": ["julep-ai", "julep", "agents", "llms", "memory", "ai"], | ||
"keywords": [ | ||
"julep-ai", | ||
"julep", | ||
"agents", | ||
"llms", | ||
"memory", | ||
"ai" | ||
], | ||
"author": { | ||
"name": "Julep", | ||
"email": "[email protected]" | ||
|
@@ -75,5 +82,7 @@ | |
"prepublishOnly": "npm run build", | ||
"test": "npm run format && npm run start_mock_api && sleep 1 && jest && npm run kill_mock_api" | ||
}, | ||
"files": ["dist"] | ||
"files": [ | ||
"dist" | ||
] | ||
} |
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