update
This commit is contained in:
parent
cef4cd4765
commit
eb3b48d912
2 changed files with 4 additions and 2 deletions
|
|
@ -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
2
uv.lock
generated
|
|
@ -808,7 +808,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "graphiti-core"
|
||||
version = "0.24.2"
|
||||
version = "0.24.3"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "diskcache" },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue