Skip to content

Commit 6921c15

Browse files
committed
fix: remove not existing reexport function
1 parent b3e23c0 commit 6921c15

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

basilisk/config/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"ConversationProfile",
3434
"conversation_profiles",
3535
"CUSTOM_BASE_URL_PATTERN",
36-
"get_account_source_labels",
3736
"KeyStorageMethodEnum",
3837
"LogLevelEnum",
3938
"ReleaseChannelEnum",

basilisk/conversation/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"Conversation",
2727
"get_mime_type",
2828
"ImageFile",
29-
"ImageFileTypes",
3029
"Message",
3130
"MessageBlock",
3231
"MessageRoleEnum",

basilisk/conversation/attached_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class AttachmentFileTypes(enum.StrEnum):
190190
def _missing_(cls, value: object) -> AttachmentFileTypes:
191191
"""Determine the enum value for a given input value.
192192
193-
This method is a custom implementation for handling enum value mapping when a non-standard value is provided. It maps specific string inputs to predefined ImageFileTypes.
193+
This method is a custom implementation for handling enum value mapping when a non-standard value is provided. It maps specific string inputs to predefined AttachmentFileTypes.
194194
The mapping is as follows:
195195
- "http", "https", "data" -> AttachmentFileTypes.URL
196196
- "zip" -> AttachmentFileTypes.LOCAL

0 commit comments

Comments
 (0)