You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Filters search results to only include content published before this date. */
141
141
searchBeforeDateFilter?: string;
142
142
143
+
/** Filters search results to only include content last updated after this date. */
144
+
lastUpdatedAfterFilter?: string;
145
+
146
+
/** Filters search results to only include content last updated before this date. */
147
+
lastUpdatedBeforeFilter?: string;
148
+
149
+
/** When set to true, disables web search completely and the model will only use its training data to respond. This is useful when you want deterministic responses without external information. */
150
+
disableSearch?: boolean;
151
+
152
+
/** Enables a classifier that decides if web search is needed based on your query. */
153
+
enableSearchClassifier?: boolean;
154
+
143
155
/**
144
156
* Configuration for using web search in model responses.
web_search_options: this.webSearchOptionsasRecord<string,unknown>,// Cast WebSearchOptions to generic type to avoid conflict with OpenAI's WebSearchOptions interface
0 commit comments