Skip to content

Commit 1b4844f

Browse files
author
yuan.wang
committed
change internet search to False
1 parent 554f8fa commit 1b4844f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/memos/api/product_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 ====
@@ -667,7 +667,7 @@ class APIChatCompleteRequest(BaseRequest):
667667
)
668668

669669
# ==== Extended capabilities ====
670-
internet_search: bool = Field(True, description="Whether to use internet search")
670+
internet_search: bool = Field(False, description="Whether to use internet search")
671671
threshold: float = Field(0.5, description="Threshold for filtering references")
672672

673673
# ==== Backward compatibility ====

0 commit comments

Comments
 (0)