Skip to content

Commit 43f33c8

Browse files
committed
(removed extra space)
1 parent 09b212d commit 43f33c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

application/src/main/java/org/togetherjava/tjbot/features/chatgpt/ChatGptService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public Optional<String> ask(String question, @Nullable String context) {
9797
return Optional.empty();
9898
}
9999

100-
String contextText = context == null ? "" : ", Context: %s. ".formatted(context);
100+
String contextText = context == null ? "" : ", Context: %s.".formatted(context);
101101
String fullQuestion = "(KEEP IT CONCISE, NOT MORE THAN 280 WORDS%s) - %s"
102102
.formatted(contextText, question);
103103

0 commit comments

Comments
 (0)