-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow importing
bot
, typing
and utils
- Loading branch information
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
VERSION = _version.version_tuple | ||
|
||
|
||
__all__ = ["__version__", "VERSION", "typing", "utils", "bot"] |