Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions graphiti_core/driver/search_interface/search_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from typing import Any

from pydantic import BaseModel
from pydantic import BaseModel, ConfigDict


class SearchInterface(BaseModel):
Expand All @@ -33,6 +33,8 @@ class SearchInterface(BaseModel):
- EntityEdge from graphiti_core.edges
"""

model_config = ConfigDict(arbitrary_types_allowed=True)

async def edge_fulltext_search(
self,
driver: Any,
Expand Down Expand Up @@ -347,5 +349,3 @@ def build_edge_search_filters(self, search_filters: Any) -> Any:
"""
raise NotImplementedError

class Config:
arbitrary_types_allowed = True
Loading