File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212)
1313from .region import Region
1414from .runtime import Runtime
15+ from .store import Store , StorageFormat , StoreResult
1516
1617__all__ = [
1718 "Connection" ,
2728 "NotSupportedError" ,
2829 "Region" ,
2930 "Runtime" ,
31+ "Store" ,
32+ "StorageFormat" ,
33+ "StoreResult" ,
3034]
Original file line number Diff line number Diff line change 55from .region import Region
66from .runtime import Runtime
77from .session_type import SessionType
8+ from .store import StorageFormat
89
910
1011DEFAULT_ENDPOINT : str = "api.cloud.wherobots.com" # "api.cloud.wherobots.com"
1314DEFAULT_RUNTIME : Runtime = Runtime .TINY
1415DEFAULT_REGION : Region = Region .AWS_US_WEST_2
1516DEFAULT_SESSION_TYPE : SessionType = SessionType .MULTI
17+ DEFAULT_STORAGE_FORMAT : StorageFormat = StorageFormat .PARQUET
1618DEFAULT_READ_TIMEOUT_SECONDS : float = 0.25
1719DEFAULT_SESSION_WAIT_TIMEOUT_SECONDS : float = 900
1820
You can’t perform that action at this time.
0 commit comments