File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,10 @@ export function Component(): JSX.Element {
102
102
setShowSpeechOutputAzure ( config . showSpeechOutputAzure ) ;
103
103
setShowAgenticRetrievalOption ( config . showAgenticRetrievalOption ) ;
104
104
setUseAgenticRetrieval ( config . showAgenticRetrievalOption ) ;
105
+ if ( config . showAgenticRetrievalOption ) {
106
+ setRetrieveCount ( 10 ) ;
107
+ setMinimumRerankerScore ( 1.5 ) ;
108
+ }
105
109
} ) ;
106
110
} ;
107
111
Original file line number Diff line number Diff line change @@ -135,6 +135,10 @@ const Chat = () => {
135
135
setShowChatHistoryCosmos ( config . showChatHistoryCosmos ) ;
136
136
setShowAgenticRetrievalOption ( config . showAgenticRetrievalOption ) ;
137
137
setUseAgenticRetrieval ( config . showAgenticRetrievalOption ) ;
138
+ if ( config . showAgenticRetrievalOption ) {
139
+ setRetrieveCount ( 10 ) ;
140
+ setMinimumRerankerScore ( 1.5 ) ;
141
+ }
138
142
} ) ;
139
143
} ;
140
144
You can’t perform that action at this time.
0 commit comments