Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit a312585

Browse files
committed
Format includes on the rest of the files
1 parent ca68981 commit a312585

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

engine/repositories/assistant_fs_repository.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#include "assistant_fs_repository.h"
22
#include <json/reader.h>
3+
#include <algorithm>
34
#include <filesystem>
45
#include <fstream>
56
#include <mutex>
67
#include "utils/result.hpp"
7-
#include <algorithm>
88

99
cpp::result<std::vector<OpenAi::Assistant>, std::string>
1010
AssistantFsRepository::ListAssistants(uint8_t limit, const std::string& order,

engine/repositories/file_fs_repository.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#include "file_fs_repository.h"
22
#include <json/reader.h>
3+
#include <algorithm>
34
#include <filesystem>
45
#include <fstream>
56
#include "database/file.h"
67
#include "utils/logging_utils.h"
78
#include "utils/result.hpp"
8-
#include <algorithm>
99

1010
std::filesystem::path FileFsRepository::GetFilePath() const {
1111
return data_folder_path_ / kFileContainerFolderName;

engine/repositories/thread_fs_repository.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include "thread_fs_repository.h"
2+
#include <algorithm>
23
#include <fstream>
34
#include <mutex>
45
#include "common/assistant.h"
56
#include "utils/result.hpp"
6-
#include <algorithm>
77

88
cpp::result<std::vector<OpenAi::Thread>, std::string>
99
ThreadFsRepository::ListThreads(uint8_t limit, const std::string& order,

0 commit comments

Comments
 (0)