File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export type ChatAppRequestOverrides = {
37
37
gpt4v_input ?: GPT4VInput ;
38
38
vector_fields : VectorFieldOptions [ ] ;
39
39
language : string ;
40
+ use_bing_search ?: boolean ;
40
41
} ;
41
42
42
43
export type ResponseMessage = {
@@ -85,6 +86,7 @@ export type Config = {
85
86
showGPT4VOptions : boolean ;
86
87
showSemanticRankerOption : boolean ;
87
88
showVectorOption : boolean ;
89
+ showBingSearchOption : boolean ;
88
90
showUserUpload : boolean ;
89
91
showLanguagePicker : boolean ;
90
92
showSpeechInput : boolean ;
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export interface SettingsProps {
24
24
retrievalMode : RetrievalMode ;
25
25
useGPT4V : boolean ;
26
26
gpt4vInput : GPT4VInput ;
27
+ useBingSearch : boolean ;
27
28
vectorFieldList : VectorFieldOptions [ ] ;
28
29
showSemanticRankerOption : boolean ;
29
30
showGPT4VOptions : boolean ;
@@ -40,6 +41,7 @@ export interface SettingsProps {
40
41
promptTemplatePrefix ?: string ;
41
42
promptTemplateSuffix ?: string ;
42
43
showSuggestFollowupQuestions ?: boolean ;
44
+ showBingSearchOption : boolean ;
43
45
}
44
46
45
47
export const Settings = ( {
You can’t perform that action at this time.
0 commit comments