Skip to content

Commit

Permalink
refactor(catalyser): change request method from newSessionWithPrompt …
Browse files Browse the repository at this point in the history
…to userInput
  • Loading branch information
phodal committed May 24, 2024
1 parent 1032bf9 commit 86ea832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/agent/catalyser/Catalyser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export class Catalyser {
return;
}

this.extension.sidebar.webviewProtocol?.request("newSessionWithPrompt", {
prompt: finalPrompt.prompt,
this.extension.sidebar.webviewProtocol?.request("userInput", {
input: finalPrompt.prompt,
});

if (finalPrompt.chunks.length > 0) {
Expand Down

0 comments on commit 86ea832

Please sign in to comment.