We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab52c2 commit c6f93ddCopy full SHA for c6f93dd
ucm/__init__.py
@@ -0,0 +1,16 @@
1
+from ucm.integration.vllm.ucm_connector import UCMConnector
2
+
3
+try:
4
+ from ucm.integration.vllm.patch.apply_patch import ensure_patches_applied
5
6
+ ensure_patches_applied()
7
+except Exception as e:
8
+ # Don't fail if patches can't be applied - might be running in environment without vLLM
9
+ import warnings
10
11
+ warnings.warn(
12
+ f"Failed to apply vLLM patches: {e}. "
13
+ f"If you're using vLLM, ensure it's installed and patches are compatible."
14
+ )
15
16
+__all__ = ["UCMConnector"]
0 commit comments