use correct include for spdlog

This commit is contained in:
Morgan Funtowicz 2024-07-10 13:57:31 +00:00
parent 42748d5960
commit ed14bd6818

View File

@ -8,7 +8,7 @@
#include <filesystem> #include <filesystem>
#include <span> #include <span>
#include <fmt/format.h> #include <spdlog/fmt/fmt.h>
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
#include <tensorrt_llm/runtime/common.h> #include <tensorrt_llm/runtime/common.h>
@ -92,7 +92,7 @@ namespace huggingface::tgi::backends {
* @param cb The callback to stream token back * @param cb The callback to stream token back
* @return Global number of generated tokens for this request id * @return Global number of generated tokens for this request id
*/ */
size_t Stream(tle::IdType reqId, const std::function<TokenStreamingCallback>& cb); size_t Stream(tle::IdType reqId, const std::function<TokenStreamingCallback> &cb);
}; };
} }