Skip to content

Commit 791352a

Browse files
Merge branch 'main' of github.com:getzep/zep-python
2 parents 2ae5251 + 58d382c commit 791352a

File tree

15 files changed

+1772
-1067
lines changed

15 files changed

+1772
-1067
lines changed

examples/chat_history/chat_history_shoe_purchase.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
history = [
22
{
3-
"role": "user",
3+
"role": "Jane",
44
"role_type": "user",
55
"content": (
66
"Hi there, I'm looking for a new pair of shoes. I'm not sure where"
@@ -17,7 +17,7 @@
1717
),
1818
},
1919
{
20-
"role": "user",
20+
"role": "Jane",
2121
"role_type": "user",
2222
"content": "I like Nike and Adidas, but I'm open to other brands too.",
2323
},
@@ -32,7 +32,7 @@
3232
),
3333
},
3434
{
35-
"role": "user",
35+
"role": "Jane",
3636
"role_type": "user",
3737
"content": "I'll be using them for running.",
3838
},
@@ -46,7 +46,7 @@
4646
),
4747
},
4848
{
49-
"role": "user",
49+
"role": "Jane",
5050
"role_type": "user",
5151
"content": ("I wear a men's size 10, and I'm not sure about the foot width."),
5252
},
@@ -59,7 +59,7 @@
5959
),
6060
},
6161
{
62-
"role": "user",
62+
"role": "Jane",
6363
"role_type": "user",
6464
"content": (
6565
"I have a bit of a pronation issue. Do I need to consider that"
@@ -78,7 +78,7 @@
7878
),
7979
},
8080
{
81-
"role": "user",
81+
"role": "Jane",
8282
"role_type": "user",
8383
"content": "Great, I have a budget of around $120.",
8484
},
@@ -103,7 +103,7 @@
103103
"metadata": {"bar": "foo"},
104104
},
105105
{
106-
"role": "user",
106+
"role": "Jane",
107107
"role_type": "user",
108108
"content": (
109109
"I've heard good things about Brooks, but I was kind of hoping to"
@@ -121,7 +121,7 @@
121121
),
122122
},
123123
{
124-
"role": "user",
124+
"role": "Jane",
125125
"role_type": "user",
126126
"content": "They're nice looking. Yes, I think I'll go with those.",
127127
},

poetry.lock

Lines changed: 981 additions & 966 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,29 @@
11
[tool.poetry]
22
name = "zep-cloud"
3-
version = "2.10.0"
3+
version = "2.12.2"
44
description = ""
55
readme = "README.md"
66
authors = []
77
packages = [{ include = "zep_cloud", from = "src" }]
88

9+
classifiers = [
10+
"Intended Audience :: Developers",
11+
"Programming Language :: Python",
12+
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.8",
14+
"Programming Language :: Python :: 3.9",
15+
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Operating System :: OS Independent",
19+
"Operating System :: POSIX",
20+
"Operating System :: MacOS",
21+
"Operating System :: POSIX :: Linux",
22+
"Operating System :: Microsoft :: Windows",
23+
"Topic :: Software Development :: Libraries :: Python Modules",
24+
"Typing :: Typed"
25+
]
26+
927
[tool.poetry.dependencies]
1028
python = ">=3.9.0,<4.0"
1129
httpx = ">=0.21.2"
@@ -17,6 +35,7 @@ mypy = "1.9.0"
1735
pytest = "^7.4.0"
1836
pytest-asyncio = "^0.23.5"
1937
python-dateutil = "^2.9.0"
38+
types-python-dateutil = "^2.9.0.20240316"
2039
langchain = "^0.1.3"
2140
openai = "^1.9.0"
2241
langchain-openai = "^0.0.3"
@@ -25,7 +44,7 @@ ruff = "^0.4.8"
2544
ipykernel = "^6.29.4"
2645

2746
[tool.pytest.ini_options]
28-
testpaths = ["tests"]
47+
testpaths = [ "tests" ]
2948
asyncio_mode = "auto"
3049

3150
[tool.mypy]

0 commit comments

Comments
 (0)