Skip to content

Commit

Permalink
Rename md title
Browse files Browse the repository at this point in the history
  • Loading branch information
carlrobertoh committed Oct 4, 2023
1 parent b4881be commit a456467
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void actionPerformed(@NotNull AnActionEvent e) {
var fileContent = currentConversation
.getMessages()
.stream()
.map(it -> String.format("### User:\n%s\n### ChatGPT:\n%s\n", it.getPrompt(),
.map(it -> String.format("### User:\n%s\n### CodeGPT:\n%s\n", it.getPrompt(),
it.getResponse()))
.collect(Collectors.joining());
VirtualFile file = new LightVirtualFile(fileName, fileContent);
Expand Down

0 comments on commit a456467

Please sign in to comment.