Skip to content

Commit

Permalink
Release version 1.4.1 (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheR1D authored Apr 6, 2024
1 parent 89d6e4c commit 7b619e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sgpt/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.4.0"
__version__ = "1.4.1"
2 changes: 1 addition & 1 deletion sgpt/handlers/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from ..printer import MarkdownPrinter, Printer, TextPrinter
from ..role import DefaultRoles, SystemRole

completion: Callable[..., Any] = lambda *args, **kwargs: None
completion: Callable[..., Any] = lambda *args, **kwargs: Generator[Any, None, None]
base_url = cfg.get("API_BASE_URL")
use_litellm = cfg.get("USE_LITELLM") == "true"
additional_kwargs = {
Expand Down

0 comments on commit 7b619e1

Please sign in to comment.