Add formatting script for c++ (#203)

This commit is contained in:
Aaron Po
2026-04-19 15:46:30 -04:00
committed by GitHub
parent 898cc8971b
commit 1f008f1237
11 changed files with 74 additions and 47 deletions

View File

@@ -13,6 +13,5 @@ class IPromptFormatter {
virtual ~IPromptFormatter() = default;
[[nodiscard]] virtual std::string Format(
std::string_view system_prompt,
std::string_view user_prompt) const = 0;
std::string_view system_prompt, std::string_view user_prompt) const = 0;
};