Skip to content

Commit

Permalink
Formatting and updating the changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 30, 2024
1 parent cc51ead commit c1caf0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
- [5d138d5] [Feature] Separate MCP server and client processes

> Improvements:
- [cc51ead] [Improvement] Handle missing default model + optimizing the config calls
- [7fa1a6f] [Improvement] Handle interruption during MCP Server initialization
- [abbcd08] [Improvement] Better MCP server related error handling
- [cccf3a3] [Improvement] Proper conversation handling when interrupted with tools
- [5c93e35] [Improvement] Handle hallucinated tool calls (issue #19 by runekaagaard)


---
2 changes: 1 addition & 1 deletion app-data/version.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "6.8.2"
version = "6.8.3"
2 changes: 1 addition & 1 deletion console_gpt/menus/model_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def model_menu() -> Dict[str, Union[int, str, float]]:
all_models = fetch_variable("models")

if default_model not in all_models:
default_model = list(all_models.keys())[0]
default_model = list(all_models.keys())[0]
_show_menu = True

if not _show_menu:
Expand Down

0 comments on commit c1caf0e

Please sign in to comment.