We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c386f commit f8db9aeCopy full SHA for f8db9ae
vllm/entrypoints/chat_utils.py
@@ -2,7 +2,6 @@
2
3
import asyncio
4
import json
5
-import traceback
6
from abc import ABC, abstractmethod
7
from collections import defaultdict, deque
8
from collections.abc import Awaitable, Iterable
@@ -1227,12 +1226,3 @@ def apply_mistral_chat_template(
1227
1226
# are properly caught in the preprocessing_input step
1228
except AssertionError as e:
1229
raise ValueError from e
1230
-
1231
- # External library exceptions can sometimes occur despite the framework's
1232
- # internal exception management capabilities.
1233
- except Exception as e:
1234
1235
- # Log and report any library-related exceptions for further
1236
- # investigation.
1237
- logger.exception(traceback.format_exc())
1238
- raise ValueError from e
0 commit comments