Skip to content

Commit

Permalink
Add models to Python SDK (#1994)
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanTrem authored Feb 20, 2025
1 parent ad001fa commit 9140000
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions py/r2r/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from sdk.async_client import R2RAsyncClient
from sdk.models import R2RException
from sdk.sync_client import R2RClient
from shared import *

__version__ = metadata.version("r2r")

Expand Down
6 changes: 6 additions & 0 deletions py/shared/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from .abstractions import *
from .abstractions import __all__ as abstractions_all
from .api.models import *
from .utils import *

__all__ = abstractions_all

0 comments on commit 9140000

Please sign in to comment.