We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d86b97 commit ae12830Copy full SHA for ae12830
eval_protocol/__init__.py
@@ -13,6 +13,10 @@
13
import warnings
14
from typing import TYPE_CHECKING
15
16
+import litellm
17
+
18
+litellm.disable_add_transform_inline_image_block = True
19
20
warnings.filterwarnings("default", category=DeprecationWarning, module="eval_protocol")
21
22
# Eager imports for symbols that conflict with module names - ONLY when pytest is running.
eval_protocol/mcp/execution/policy.py
@@ -22,9 +22,6 @@
23
logger = logging.getLogger(__name__)
24
25
-# Disable LiteLLM's document inlining feature that appends #transform=inline
26
-# to base64 image URLs, which breaks base64 decoding
27
-litellm.disable_add_transform_inline_image_block = True
28
29
class LiteLLMPolicy(LLMBasePolicy):
30
"""
0 commit comments