Skip to content

Commit

Permalink
Allow importing bot, typing and utils
Browse files Browse the repository at this point in the history
  • Loading branch information
amureki committed May 8, 2024
1 parent d3f8025 commit 0850f4f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions sam/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
"""A GPT based slack bot trained to specific personalities and use cases.
"""
A GPT-based Slack bot trained to specific personalities and use cases.
Sam uses OpenAI's assistant API to align ChatGPT to a specific personality traits,
provide domain specific knowledge and context to provide a work-colleague like
provide domain-specific knowledge and context to provide a work-colleague like
experience.
"""

from . import _version
from . import bot, typing, utils

__version__ = _version.version

Check failure on line 12 in sam/__init__.py

View workflow job for this annotation

GitHub Actions / lint (ruff check --output-format=github .)

Ruff (I001)

sam/__init__.py:9:1: I001 Import block is un-sorted or un-formatted
VERSION = _version.version_tuple


__all__ = ["__version__", "VERSION", "typing", "utils", "bot"]

0 comments on commit 0850f4f

Please sign in to comment.