From 58e1ff16bc0afa7ba8610fd39845fb0ceb49a499 Mon Sep 17 00:00:00 2001 From: HanishKVC Date: Fri, 26 Apr 2024 09:46:00 +0530 Subject: [PATCH] ChatON: switch to ordered_json from json library to be in sync with the json namespace in server. --- common/chaton.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/chaton.hpp b/common/chaton.hpp index e072289f8..00ade5845 100644 --- a/common/chaton.hpp +++ b/common/chaton.hpp @@ -82,7 +82,7 @@ const auto K_SYSTEMUSER_1ST_USER_HAS_PREFIX = "systemuser-1st-user-has-prefix"; const auto K_REVERSE_PROMPT = "reverse-prompt"; -using json = nlohmann::json; +using json = nlohmann::ordered_json; json conMeta;