From eb3b48d91218d887ed3ef0824174e0aac45f9fc5 Mon Sep 17 00:00:00 2001 From: prestonrasmussen Date: Mon, 8 Dec 2025 10:43:37 -0500 Subject: [PATCH] update --- graphiti_core/search/search_filters.py | 4 +++- uv.lock | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/graphiti_core/search/search_filters.py b/graphiti_core/search/search_filters.py index 8d00b88a..063e846e 100644 --- a/graphiti_core/search/search_filters.py +++ b/graphiti_core/search/search_filters.py @@ -43,7 +43,9 @@ class DateFilter(BaseModel): class PropertyFilter(BaseModel): property_name: str = Field(description='Property name') - property_value: str = Field(description='Value you wnt to match on for the property') + property_value: str | int | float | None = Field( + description='Value you want to match on for the property' + ) comparison_operator: ComparisonOperator = Field( description='Comparison operator for the property' ) diff --git a/uv.lock b/uv.lock index 8a953077..25ca2f08 100644 --- a/uv.lock +++ b/uv.lock @@ -808,7 +808,7 @@ wheels = [ [[package]] name = "graphiti-core" -version = "0.24.2" +version = "0.24.3" source = { editable = "." } dependencies = [ { name = "diskcache" },