From b592dbed788bd76937928f68fc8ec9416933a3a2 Mon Sep 17 00:00:00 2001 From: martyna-mindsdb <109554435+martyna-mindsdb@users.noreply.github.com> Date: Fri, 27 Mar 2026 13:35:01 +0100 Subject: [PATCH 1/4] updated version to 1.0.0 --- anton/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anton/__init__.py b/anton/__init__.py index 49e0fc1..5becc17 100644 --- a/anton/__init__.py +++ b/anton/__init__.py @@ -1 +1 @@ -__version__ = "0.7.0" +__version__ = "1.0.0" From b5c6c9c3d0c97ccd39b179dcb7d4e1ab01e5fc3b Mon Sep 17 00:00:00 2001 From: martyna-mindsdb Date: Fri, 27 Mar 2026 17:25:04 +0100 Subject: [PATCH 2/4] remove minds enterprise option --- anton/chat.py | 5 ++--- anton/cli.py | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/anton/chat.py b/anton/chat.py index cc09911..1e084e4 100644 --- a/anton/chat.py +++ b/anton/chat.py @@ -1576,8 +1576,7 @@ def _model_label(model: str, role: str) -> str: def _print_choices(): console.print(" [bold]1[/] [link=https://mdb.ai][anton.cyan]Minds-Cloud[/][/link] [anton.success](recommended)[/]") - console.print(" [bold]2[/] [anton.cyan]Minds-Enterprise Server[/]") - console.print(" [bold]3[/] [anton.cyan]Bring your own key[/] [anton.muted]Anthropic / OpenAI[/]") + console.print(" [bold]2[/] [anton.cyan]Bring your own key[/] [anton.muted]Anthropic / OpenAI[/]") console.print(" [bold]q[/] [anton.muted]Back[/]") console.print() @@ -1586,7 +1585,7 @@ def _print_choices(): while True: choice = Prompt.ask( "Choose LLM Provider", - choices=["1", "2", "3", "q"], + choices=["1", "2", "q"], default="q", console=console, ) diff --git a/anton/cli.py b/anton/cli.py index 365973a..25ded04 100644 --- a/anton/cli.py +++ b/anton/cli.py @@ -382,14 +382,13 @@ def _build_frame(mouth: str, typed_lines: list[str]) -> Text: console.print(f"[anton.glow] {'━' * 40}[/]") console.print() console.print(" [bold]1[/] [link=https://mdb.ai][anton.cyan]Minds-Cloud[/][/link] [anton.success](recommended)[/]") - console.print(" [bold]2[/] [anton.cyan]Minds-Enterprise Server[/]") - console.print(" [bold]3[/] [anton.cyan]Bring your own key[/] [anton.muted]Anthropic / OpenAI[/]") + console.print(" [bold]2[/] [anton.cyan]Bring your own key[/] [anton.muted]Anthropic / OpenAI[/]") console.print() while True: choice = Prompt.ask( "Choose LLM Provider", - choices=["1", "2", "3"], + choices=["1", "2"], default="1", console=console, ) From cfd83c11a72a2a314ef8ffb7711b860161fbd764 Mon Sep 17 00:00:00 2001 From: martyna-mindsdb Date: Fri, 27 Mar 2026 18:17:05 +0100 Subject: [PATCH 3/4] fix for option 2 --- anton/cli.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/anton/cli.py b/anton/cli.py index 25ded04..3050efa 100644 --- a/anton/cli.py +++ b/anton/cli.py @@ -397,15 +397,14 @@ def _build_frame(mouth: str, typed_lines: list[str]) -> Text: if choice == "1": _setup_minds(settings, ws) elif choice == "2": - _setup_minds(settings, ws, default_url=None) - else: _setup_other_provider(settings, ws) + else: + _setup_minds(settings, ws, default_url=None) break # success except _SetupRetry: console.print() console.print(" [bold]1[/] [link=https://mdb.ai][anton.cyan]Minds-Cloud[/][/link] [anton.success](recommended)[/]") - console.print(" [bold]2[/] [anton.cyan]Minds-Enterprise Server[/]") - console.print(" [bold]3[/] [anton.cyan]Bring your own key[/] [anton.muted]Anthropic / OpenAI[/]") + console.print(" [bold]2[/] [anton.cyan]Bring your own key[/] [anton.muted]Anthropic / OpenAI[/]") console.print() continue From daac1911d185cfaf3695b12e9f389e5bc1462906 Mon Sep 17 00:00:00 2001 From: martyna-mindsdb Date: Mon, 30 Mar 2026 14:12:51 +0200 Subject: [PATCH 4/4] updated /setup output --- anton/chat.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/anton/chat.py b/anton/chat.py index 1e084e4..781160c 100644 --- a/anton/chat.py +++ b/anton/chat.py @@ -1561,16 +1561,6 @@ def _model_label(model: str, role: str) -> str: current_num = {"anthropic": "1", "openai": "2", "openai-compatible": "3"}.get( settings.planning_provider, "1" ) - console.print("[anton.cyan]Available providers:[/]") - console.print( - r" [bold]1[/] Anthropic (Claude) [dim]\[recommended][/]" - ) - console.print( - r" [bold]2[/] OpenAI (GPT / o-series) [dim]\[experimental][/]" - ) - console.print( - r" [bold]3[/] OpenAI-compatible (custom endpoint) [dim]\[experimental][/]" - ) console.print() # Use the same onboarding flow from cli.py