From ed14bd68186daf5f34a998efa1a65c8fb8010b3a Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Wed, 10 Jul 2024 13:57:31 +0000 Subject: [PATCH] use correct include for spdlog --- backends/trtllm/include/backend.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backends/trtllm/include/backend.h b/backends/trtllm/include/backend.h index 97ab3063..5fa07060 100644 --- a/backends/trtllm/include/backend.h +++ b/backends/trtllm/include/backend.h @@ -8,7 +8,7 @@ #include #include -#include +#include #include #include @@ -92,7 +92,7 @@ namespace huggingface::tgi::backends { * @param cb The callback to stream token back * @return Global number of generated tokens for this request id */ - size_t Stream(tle::IdType reqId, const std::function& cb); + size_t Stream(tle::IdType reqId, const std::function &cb); }; }