Entropic 2.3.8
Local-first agentic inference engine
Loading...
Searching...
No Matches
diagnostics.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
8#pragma once
9
11
12#include <filesystem>
13#include <memory>
14#include <string>
15
16namespace entropic {
17
18class DiagnosticsTool;
19class CheckErrorsTool;
20
26public:
33 DiagnosticsServer(const std::filesystem::path& root_dir,
34 const std::string& data_dir);
35
37
43 const std::filesystem::path& root_dir() const;
44
45private:
46 std::filesystem::path root_dir_;
47
48 std::unique_ptr<DiagnosticsTool> diagnostics_;
49 std::unique_ptr<CheckErrorsTool> check_errors_;
50};
51
52} // namespace entropic
Diagnostics MCP server with LSP client.
Definition diagnostics.h:25
~DiagnosticsServer() override
Destructor.
const std::filesystem::path & root_dir() const
Get the root directory.
Concrete base class for MCP servers (80% logic).
Definition server_base.h:66
Activate model on GPU (WARM → ACTIVE).
MCPServerBase concrete base class + ServerResponse.