Add formatting script for c++

This commit is contained in:
Aaron Po
2026-04-19 15:27:26 -04:00
parent 898cc8971b
commit 9a2ecfea82
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;
};