From 142cdabed377772b763fc8d79a131b16ed991718 Mon Sep 17 00:00:00 2001 From: Aaron Mihalik Date: Fri, 16 Feb 2024 05:44:04 -0500 Subject: [PATCH] Bugfix: eos and bos tokens positions are inconsistent (#1567) --- router/src/infer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/src/infer.rs b/router/src/infer.rs index a45685cb..655759b9 100644 --- a/router/src/infer.rs +++ b/router/src/infer.rs @@ -113,7 +113,7 @@ impl Infer { queue, shared, limit_concurrent_requests: semaphore, - template: (template, eos_token, bos_token), + template: (template, bos_token, eos_token), } }