__init__.py 331 Bytes
Newer Older
xuxzh1's avatar
last  
xuxzh1 committed
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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",
]