Skip to content

Clean up #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jigsawstack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .summary import Summary
from .geo import Geo
from .prompt_engine import PromptEngine
from .version import get_version
# from .version import get_version

class JigsawStack:
audio: Audio
Expand Down Expand Up @@ -67,4 +67,4 @@ def __init__(self, api_key: Union[str, None] = None, api_url: Union[str, None] =
self.prompt_engine = PromptEngine(api_key=api_key, api_url=api_url)

# Create a global instance of the Web class
__all__ = ["JigsawStack", "get_version"]
__all__ = ["JigsawStack"]