mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-24 00:12:08 +00:00
14 lines
331 B
Python
14 lines
331 B
Python
# Origin: https://github.com/predibase/lorax
|
|
# Path: lorax/server/lorax_server/adapters/__init__.py
|
|
# License: Apache License Version 2.0, January 2004
|
|
|
|
from text_generation_server.adapters.weights import (
|
|
AdapterBatchData,
|
|
AdapterBatchMetadata,
|
|
)
|
|
|
|
__all__ = [
|
|
"AdapterBatchData",
|
|
"AdapterBatchMetadata",
|
|
]
|