From 0d41efe0c98b5239ef77da8b1dd56c4b3f672c6e Mon Sep 17 00:00:00 2001 From: Preston Rasmussen <109292228+prasmussen15@users.noreply.github.com> Date: Fri, 31 Jan 2025 21:33:10 -0500 Subject: [PATCH] update output token limits to 2048 (#258) update token limits --- graphiti_core/llm_client/config.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/graphiti_core/llm_client/config.py b/graphiti_core/llm_client/config.py index 63257d21..952f6b52 100644 --- a/graphiti_core/llm_client/config.py +++ b/graphiti_core/llm_client/config.py @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. """ -DEFAULT_MAX_TOKENS = 1024 +DEFAULT_MAX_TOKENS = 2048 DEFAULT_TEMPERATURE = 0 diff --git a/pyproject.toml b/pyproject.toml index 335928cf..bca5595c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphiti-core" -version = "0.5.2" +version = "0.5.3" description = "A temporal graph building library" authors = [ "Paul Paliychuk ",