File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export class Catalyser {
47
47
} ) ;
48
48
49
49
let keywords = QuestionKeywords . from ( proposeOutput ) ;
50
- let queryTerm = keywords . basic . join ( " " ) ;
50
+ let queryTerm = keywords . basic ?. [ 0 ] + " " + keywords . single ?. [ 0 ] + " " + keywords . localization ?. [ 0 ] ;
51
51
52
52
// todo: add remote semantic search
53
53
step = HydeStep . Search ;
@@ -71,6 +71,7 @@ export class Catalyser {
71
71
72
72
console . log ( evaluateIns ) ;
73
73
let evaluateOutput = await this . executeIns ( evaluateIns ) ;
74
+ channel . appendLine ( "" )
74
75
channel . appendLine ( "Summary: " ) ;
75
76
channel . append ( evaluateOutput ) ;
76
77
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ export class AutoDevWebviewProtocol {
114
114
return ;
115
115
}
116
116
117
- channel . appendLine ( `Received message: ${ messageType } ` ) ;
117
+ // channel.appendLine(`Received message: ${messageType}`);
118
118
119
119
const reply = ( messageType : string , data : unknown ) => {
120
120
this . _webview . postMessage ( {
@@ -232,7 +232,7 @@ export class AutoDevWebviewProtocol {
232
232
}
233
233
234
234
private send ( messageType : string , data : any , messageId ?: string ) : string {
235
- channel . appendLine ( `Sending message: ${ messageType } ` ) ;
235
+ // channel.appendLine(`Sending message: ${messageType}`);
236
236
const id = messageId ?? uuid ( ) ;
237
237
this . _webview ?. postMessage ( {
238
238
messageType,
You can’t perform that action at this time.
0 commit comments