-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove unnecessary logging from LiteLLM initialization
- Removed logging of model configuration to avoid redundancy. chore: remove OpenAI key management module - Deleted the `openai_key_pool.py` file and related imports. - Removed associated test cases and references. This change simplifies the codebase by eliminating unused functionality. chore: update contact email in core utilities - Changed contact email from `[email protected]` to `[email protected]`. chore: reorganize imports in utility module - Removed unused imports from `__init__.py`. - Ensured only necessary modules are exposed in the `__all__` list. This change improves code readability and maintainability.
- Loading branch information
1 parent
a4befba
commit 8d2961f
Showing
7 changed files
with
4 additions
and
172 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
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 |
---|---|---|
|
@@ -17,10 +17,7 @@ | |
# Project Link: https://github.com/Undertone0809/promptulate | ||
# Contact Email: [email protected] | ||
|
||
from promptulate.utils.color_print import print_text | ||
from promptulate.utils.logger import logger | ||
from promptulate.utils.openai_key_pool import export_openai_key_pool | ||
from promptulate.utils.singleton import AbstractSingleton, Singleton | ||
from promptulate.utils.string_template import StringTemplate | ||
|
||
__all__ = ["logger", "export_openai_key_pool", "StringTemplate"] | ||
__all__ = ["logger", "StringTemplate"] |
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
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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