Files
Aethera/mcp/core/runtime/Taskflow_Trace_Json.hpp
T
2026-09-04 21:55:18 +08:00

8 lines
379 B
C++

#pragma once
#include <task_flow/export/Taskflow_Trace.hpp>
#include <nlohmann/json.hpp>
#include <cstdint>
namespace aethera::web {
[[nodiscard]] nlohmann::json taskflow_trace_json(const Taskflow_Execution_Trace& trace, std::uint64_t sequence = 0, std::uint64_t correlation_id = 0, const nlohmann::json& captured_components = {}, const nlohmann::json& captured_backend = {});
}