We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957c317 commit e2db0f7Copy full SHA for e2db0f7
1 file changed
src/views/stores/ChatStore.ts
@@ -4,6 +4,7 @@ import { ChatContext } from "@/views/stores/InputStore";
4
import { features } from "process";
5
import { Slice } from "@tiptap/pm/model";
6
import yaml from "js-yaml";
7
+import { Step } from "@mantine/core";
8
9
interface Context {
10
content: string;
@@ -251,10 +252,16 @@ DevChat key is missing from your environment or settings. Kindly input your DevC
251
252
${yaml.dump(values)}
253
\`\`\`
254
`;
- self.currentMessage = self.currentMessage + inputStr;
255
+ self.currentMessage = `
256
+${self.currentMessage}
257
+${inputStr}
258
+\`\`\`Step
259
+Thinking...123
260
+\`\`\`
261
+ `;
262
messageUtil.sendMessage({
263
command: "userInput",
- text: inputStr,
264
+ text: inputStr
265
});
266
// goto bottom
267
goScrollBottom();
0 commit comments