Skip to content

Commit

Permalink
V2 (#228)
Browse files Browse the repository at this point in the history
* chore: Add quickstart notebook

* SDK regeneration

* chore: Version bump

* chore: Add license

* chore: Version bump

* SDK regeneration

* chore: Bump version and add memory context to the example

* chore: version bump

* SDK regeneration

* chore: revert example changes

* wip

* chore: revert autogen example changes

* chore: remove autogen cache

---------

Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
  • Loading branch information
paul-paliychuk and fern-api[bot] authored Nov 15, 2024
1 parent 8226d9a commit 77f803d
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ poetry.toml
.vscode/
*.env
.venv/
venv/
venv/
.cache/
2 changes: 1 addition & 1 deletion examples/chat_history/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,4 @@ async def main() -> None:


if __name__ == "__main__":
asyncio.run(main())
asyncio.run(main())
2 changes: 1 addition & 1 deletion examples/graph_example/conversations.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,4 +286,4 @@
"content": "It's great that you and Pixel can share outdoor experiences together. Thank you for sharing all these interesting facts about yourself, Alex. You seem to lead a rich and varied life!",
},
],
]
]
2 changes: 1 addition & 1 deletion examples/graph_example/group_graph_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ async def main() -> None:


if __name__ == "__main__":
asyncio.run(main())
asyncio.run(main())
2 changes: 1 addition & 1 deletion examples/graph_example/user_graph_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,4 @@ async def main() -> None:


if __name__ == "__main__":
asyncio.run(main())
asyncio.run(main())
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zep-cloud"
version = "2.1.0"
version = "2.1.1"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion src/zep_cloud/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "zep-cloud",
"X-Fern-SDK-Version": "2.1.0",
"X-Fern-SDK-Version": "2.1.1",
}
headers["Authorization"] = f"Api-Key {self.api_key}"
return headers
Expand Down
2 changes: 1 addition & 1 deletion src/zep_cloud/types/reranker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

import typing

Reranker = typing.Union[typing.Literal["rrf", "mmr", "node_distance", "episode_mentions"], typing.Any]
Reranker = typing.Union[typing.Literal["rrf", "mmr", "node_distance", "episode_mentions", "cross_encoder"], typing.Any]

0 comments on commit 77f803d

Please sign in to comment.