From c1caf0e3e507ee1f9f7a5f9322d7efdd0fb7fdf6 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 30 Dec 2024 12:30:36 +0000 Subject: [PATCH] Formatting and updating the changelog. --- CHANGELOG.md | 2 +- app-data/version.toml | 2 +- console_gpt/menus/model_menu.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0259021..80697a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) --- diff --git a/app-data/version.toml b/app-data/version.toml index 4c649c3..4a63378 100644 --- a/app-data/version.toml +++ b/app-data/version.toml @@ -1 +1 @@ -version = "6.8.2" +version = "6.8.3" diff --git a/console_gpt/menus/model_menu.py b/console_gpt/menus/model_menu.py index e1b6bc3..7108629 100644 --- a/console_gpt/menus/model_menu.py +++ b/console_gpt/menus/model_menu.py @@ -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: