Spaces:
Sleeping
Sleeping
File size: 297 Bytes
5b14aa2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """Utility functions for the LLM extractor."""
from .gpu_utils import (
is_gpu_available,
get_gpu_info,
should_use_gpu_processor,
get_processor_preference
)
__all__ = [
"is_gpu_available",
"get_gpu_info",
"should_use_gpu_processor",
"get_processor_preference"
] |