@@ -111,7 +111,7 @@ class ChatRequest(BaseRequest):
111111 )
112112
113113 # ==== Extended capabilities ====
114- internet_search : bool = Field (True , description = "Whether to use internet search" )
114+ internet_search : bool = Field (False , description = "Whether to use internet search" )
115115 threshold : float = Field (0.5 , description = "Threshold for filtering references" )
116116
117117 # ==== Backward compatibility ====
@@ -699,7 +699,7 @@ class APIChatCompleteRequest(BaseRequest):
699699 )
700700
701701 # ==== Extended capabilities ====
702- internet_search : bool = Field (True , description = "Whether to use internet search" )
702+ internet_search : bool = Field (False , description = "Whether to use internet search" )
703703 threshold : float = Field (0.5 , description = "Threshold for filtering references" )
704704
705705 # ==== Backward compatibility ====
@@ -728,6 +728,7 @@ class GetMemoryRequest(BaseRequest):
728728class DeleteMemoryRequest (BaseRequest ):
729729 """Request model for deleting memories."""
730730
731+ writable_cube_ids : list [str ] = Field (..., description = "Writable cube IDs" )
731732 memory_ids : list [str ] | None = Field (None , description = "Memory IDs" )
732733 file_ids : list [str ] | None = Field (None , description = "File IDs" )
733734 filter : dict [str , Any ] | None = Field (None , description = "Filter for the memory" )
0 commit comments