This commit is contained in:
prestonrasmussen 2025-12-08 10:43:37 -05:00
parent cef4cd4765
commit eb3b48d912
2 changed files with 4 additions and 2 deletions

View file

@ -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'
)

2
uv.lock generated
View file

@ -808,7 +808,7 @@ wheels = [
[[package]]
name = "graphiti-core"
version = "0.24.2"
version = "0.24.3"
source = { editable = "." }
dependencies = [
{ name = "diskcache" },