Skip to content

Commit ce50423

Browse files
authored
add storage to __init__.py (#21)
* add initial Storage implementation * combine json upload and any filetype * read files async and stream upload, support directories * gateway_hostname in constructor, remove chunk_size tool, upload data if not a file * fix gateway_url * add storage to __init__.py --------- Signed-off-by: Cillian Berragan <[email protected]>
1 parent 5aa0647 commit ce50423

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from .services.engine import Engine
22
from .services.insight import Insight
33
from .services.nebula import Nebula
4+
from .services.storage import Storage
45
from .tools.tool import Tool
56

6-
__all__ = ["Engine", "Insight", "Nebula", "Tool"]
7+
__all__ = ["Engine", "Insight", "Nebula", "Storage", "Tool"]

0 commit comments

Comments
 (0)