-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(memory): LangChain 'Facts' Support. Refactor
Facts
(#123)
* move facts to sessions * facts in memory. update langcahin * deps
- Loading branch information
1 parent
c025480
commit e030f52
Showing
7 changed files
with
425 additions
and
58 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "zep-python" | ||
version = "2.0.0-rc.1" | ||
version = "2.0.0-rc.2" | ||
description = "Zep: Fast, scalable building blocks for LLM apps. This is the Python client for the Zep service." | ||
authors = ["Daniel Chalef <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -9,8 +9,6 @@ readme = "README.md" | |
python = ">=3.9.0,<4" | ||
httpx = "^0.26.0" | ||
pydantic = ">=2.0.0" | ||
packaging = "^23.1" | ||
black = "24.2.0" | ||
|
||
[tool.poetry.group.test.dependencies] | ||
pytest = "^7.3.1" | ||
|
@@ -21,6 +19,7 @@ mypy = "^1.2.0" | |
pytest-mock = "^3.10.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
packaging = "^23.1" | ||
black = "^24.2.0" | ||
ruff = ">=0.0.291" | ||
mypy = "^1.2.0" | ||
|
@@ -32,7 +31,7 @@ pdoc3 = "^0.10.0" | |
langchain = "^0.1.3" | ||
openai = "^1.9.0" | ||
langchain-openai = "^0.0.3" | ||
langchain-cli = {extras = ["serve"], version = "^0.0.21"} | ||
langchain-cli = { extras = ["serve"], version = "^0.0.21" } | ||
bs4 = "^0.0.2" | ||
|
||
[build-system] | ||
|
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