mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-15 15:39:47 +00:00
698 lines
23 KiB
Python
698 lines
23 KiB
Python
"""Interactive onboarding questionnaire for nanobot."""
|
|
|
|
import json
|
|
import types
|
|
from typing import Any, Callable, get_args, get_origin
|
|
|
|
import questionary
|
|
from loguru import logger
|
|
from pydantic import BaseModel
|
|
from rich.console import Console
|
|
from rich.panel import Panel
|
|
from rich.table import Table
|
|
|
|
from nanobot.config.loader import get_config_path, load_config
|
|
from nanobot.config.schema import Config
|
|
|
|
console = Console()
|
|
|
|
# --- Type Introspection ---
|
|
|
|
|
|
def _get_field_type_info(field_info) -> tuple[str, Any]:
|
|
"""Extract field type info from Pydantic field.
|
|
|
|
Returns: (type_name, inner_type)
|
|
- type_name: "str", "int", "float", "bool", "list", "dict", "model"
|
|
- inner_type: for list, the item type; for model, the model class
|
|
"""
|
|
annotation = field_info.annotation
|
|
if annotation is None:
|
|
return "str", None
|
|
|
|
origin = get_origin(annotation)
|
|
args = get_args(annotation)
|
|
|
|
# Handle Optional[T] / T | None
|
|
if origin is types.UnionType:
|
|
non_none_args = [a for a in args if a is not type(None)]
|
|
if len(non_none_args) == 1:
|
|
annotation = non_none_args[0]
|
|
origin = get_origin(annotation)
|
|
args = get_args(annotation)
|
|
|
|
# Check for list
|
|
if origin is list or (hasattr(origin, "__name__") and origin.__name__ == "List"):
|
|
if args:
|
|
return "list", args[0]
|
|
return "list", str
|
|
|
|
# Check for dict
|
|
if origin is dict or (hasattr(origin, "__name__") and origin.__name__ == "Dict"):
|
|
return "dict", None
|
|
|
|
# Check for bool
|
|
if annotation is bool or (hasattr(annotation, "__name__") and annotation.__name__ == "bool"):
|
|
return "bool", None
|
|
|
|
# Check for int
|
|
if annotation is int or (hasattr(annotation, "__name__") and annotation.__name__ == "int"):
|
|
return "int", None
|
|
|
|
# Check for float
|
|
if annotation is float or (hasattr(annotation, "__name__") and annotation.__name__ == "float"):
|
|
return "float", None
|
|
|
|
# Check if it's a nested BaseModel
|
|
if isinstance(annotation, type) and issubclass(annotation, BaseModel):
|
|
return "model", annotation
|
|
|
|
return "str", None
|
|
|
|
|
|
def _get_field_display_name(field_key: str, field_info) -> str:
|
|
"""Get display name for a field."""
|
|
if field_info and field_info.description:
|
|
return field_info.description
|
|
name = field_key
|
|
suffix_map = {
|
|
"_s": " (seconds)",
|
|
"_ms": " (ms)",
|
|
"_url": " URL",
|
|
"_path": " Path",
|
|
"_id": " ID",
|
|
"_key": " Key",
|
|
"_token": " Token",
|
|
}
|
|
for suffix, replacement in suffix_map.items():
|
|
if name.endswith(suffix):
|
|
name = name[: -len(suffix)] + replacement
|
|
break
|
|
return name.replace("_", " ").title()
|
|
|
|
|
|
# --- Value Formatting ---
|
|
|
|
|
|
def _format_value(value: Any, rich: bool = True) -> str:
|
|
"""Format a value for display."""
|
|
if value is None or value == "" or value == {} or value == []:
|
|
return "[dim]not set[/dim]" if rich else "[not set]"
|
|
if isinstance(value, list):
|
|
return ", ".join(str(v) for v in value)
|
|
if isinstance(value, dict):
|
|
return json.dumps(value)
|
|
return str(value)
|
|
|
|
|
|
def _format_value_for_input(value: Any, field_type: str) -> str:
|
|
"""Format a value for use as input default."""
|
|
if value is None or value == "":
|
|
return ""
|
|
if field_type == "list" and isinstance(value, list):
|
|
return ",".join(str(v) for v in value)
|
|
if field_type == "dict" and isinstance(value, dict):
|
|
return json.dumps(value)
|
|
return str(value)
|
|
|
|
|
|
# --- Rich UI Components ---
|
|
|
|
|
|
def _show_config_panel(display_name: str, model: BaseModel, fields: list) -> None:
|
|
"""Display current configuration as a rich table."""
|
|
table = Table(show_header=False, box=None, padding=(0, 2))
|
|
table.add_column("Field", style="cyan")
|
|
table.add_column("Value")
|
|
|
|
for field_name, field_info in fields:
|
|
value = getattr(model, field_name, None)
|
|
display = _get_field_display_name(field_name, field_info)
|
|
formatted = _format_value(value, rich=True)
|
|
table.add_row(display, formatted)
|
|
|
|
console.print(Panel(table, title=f"[bold]{display_name}[/bold]", border_style="blue"))
|
|
|
|
|
|
def _show_main_menu_header() -> None:
|
|
"""Display the main menu header."""
|
|
from nanobot import __logo__, __version__
|
|
|
|
console.print()
|
|
# Use Align.CENTER for the single line of text
|
|
from rich.align import Align
|
|
|
|
console.print(
|
|
Align.center(f"{__logo__} [bold cyan]nanobot[{__version__}][/bold cyan]")
|
|
)
|
|
console.print()
|
|
|
|
|
|
def _show_section_header(title: str, subtitle: str = "") -> None:
|
|
"""Display a section header."""
|
|
console.print()
|
|
if subtitle:
|
|
console.print(
|
|
Panel(f"[dim]{subtitle}[/dim]", title=f"[bold]{title}[/bold]", border_style="blue")
|
|
)
|
|
else:
|
|
console.print(Panel("", title=f"[bold]{title}[/bold]", border_style="blue"))
|
|
|
|
|
|
# --- Input Handlers ---
|
|
|
|
|
|
def _input_bool(display_name: str, current: bool | None) -> bool | None:
|
|
"""Get boolean input via confirm dialog."""
|
|
return questionary.confirm(
|
|
display_name,
|
|
default=bool(current) if current is not None else False,
|
|
).ask()
|
|
|
|
|
|
def _input_text(display_name: str, current: Any, field_type: str) -> Any:
|
|
"""Get text input and parse based on field type."""
|
|
default = _format_value_for_input(current, field_type)
|
|
|
|
value = questionary.text(f"{display_name}:", default=default).ask()
|
|
|
|
if value is None or value == "":
|
|
return None
|
|
|
|
if field_type == "int":
|
|
try:
|
|
return int(value)
|
|
except ValueError:
|
|
console.print("[yellow]⚠ Invalid number format, value not saved[/yellow]")
|
|
return None
|
|
elif field_type == "float":
|
|
try:
|
|
return float(value)
|
|
except ValueError:
|
|
console.print("[yellow]⚠ Invalid number format, value not saved[/yellow]")
|
|
return None
|
|
elif field_type == "list":
|
|
return [v.strip() for v in value.split(",") if v.strip()]
|
|
elif field_type == "dict":
|
|
try:
|
|
return json.loads(value)
|
|
except json.JSONDecodeError:
|
|
console.print("[yellow]⚠ Invalid JSON format, value not saved[/yellow]")
|
|
return None
|
|
|
|
return value
|
|
|
|
|
|
def _input_with_existing(
|
|
display_name: str, current: Any, field_type: str
|
|
) -> Any:
|
|
"""Handle input with 'keep existing' option for non-empty values."""
|
|
has_existing = current is not None and current != "" and current != {} and current != []
|
|
|
|
if has_existing and not isinstance(current, list):
|
|
choice = questionary.select(
|
|
display_name,
|
|
choices=["Enter new value", "Keep existing value"],
|
|
default="Keep existing value",
|
|
).ask()
|
|
if choice == "Keep existing value" or choice is None:
|
|
return None
|
|
|
|
return _input_text(display_name, current, field_type)
|
|
|
|
|
|
# --- Pydantic Model Configuration ---
|
|
|
|
|
|
def _configure_pydantic_model(
|
|
model: BaseModel,
|
|
display_name: str,
|
|
*,
|
|
skip_fields: set[str] | None = None,
|
|
finalize_hook: Callable | None = None,
|
|
) -> None:
|
|
"""Configure a Pydantic model interactively."""
|
|
skip_fields = skip_fields or set()
|
|
|
|
fields = []
|
|
for field_name, field_info in type(model).model_fields.items():
|
|
if field_name in skip_fields:
|
|
continue
|
|
fields.append((field_name, field_info))
|
|
|
|
if not fields:
|
|
console.print(f"[dim]{display_name}: No configurable fields[/dim]")
|
|
return
|
|
|
|
def get_choices() -> list[str]:
|
|
choices = []
|
|
for field_name, field_info in fields:
|
|
value = getattr(model, field_name, None)
|
|
display = _get_field_display_name(field_name, field_info)
|
|
formatted = _format_value(value, rich=False)
|
|
choices.append(f"{display}: {formatted}")
|
|
return choices + ["✓ Done"]
|
|
|
|
while True:
|
|
_show_config_panel(display_name, model, fields)
|
|
choices = get_choices()
|
|
|
|
answer = questionary.select(
|
|
"Select field to configure:",
|
|
choices=choices,
|
|
qmark="→",
|
|
).ask()
|
|
|
|
if answer == "✓ Done" or answer is None:
|
|
if finalize_hook:
|
|
finalize_hook(model)
|
|
break
|
|
|
|
field_idx = next((i for i, c in enumerate(choices) if c == answer), -1)
|
|
if field_idx < 0 or field_idx >= len(fields):
|
|
break
|
|
|
|
field_name, field_info = fields[field_idx]
|
|
current_value = getattr(model, field_name, None)
|
|
field_type, _ = _get_field_type_info(field_info)
|
|
field_display = _get_field_display_name(field_name, field_info)
|
|
|
|
if field_type == "model":
|
|
nested_model = current_value
|
|
if nested_model is None:
|
|
_, nested_cls = _get_field_type_info(field_info)
|
|
if nested_cls:
|
|
nested_model = nested_cls()
|
|
setattr(model, field_name, nested_model)
|
|
|
|
if nested_model and isinstance(nested_model, BaseModel):
|
|
_configure_pydantic_model(nested_model, field_display)
|
|
continue
|
|
|
|
if field_type == "bool":
|
|
new_value = _input_bool(field_display, current_value)
|
|
if new_value is not None:
|
|
setattr(model, field_name, new_value)
|
|
else:
|
|
new_value = _input_with_existing(field_display, current_value, field_type)
|
|
if new_value is not None:
|
|
setattr(model, field_name, new_value)
|
|
|
|
|
|
# --- Provider Configuration ---
|
|
|
|
|
|
_PROVIDER_INFO: dict[str, tuple[str, bool, bool, str]] | None = None
|
|
|
|
|
|
def _get_provider_info() -> dict[str, tuple[str, bool, bool, str]]:
|
|
"""Get provider info from registry (cached)."""
|
|
global _PROVIDER_INFO
|
|
if _PROVIDER_INFO is None:
|
|
from nanobot.providers.registry import PROVIDERS
|
|
|
|
_PROVIDER_INFO = {}
|
|
for spec in PROVIDERS:
|
|
_PROVIDER_INFO[spec.name] = (
|
|
spec.display_name or spec.name,
|
|
spec.is_gateway,
|
|
spec.is_local,
|
|
spec.default_api_base,
|
|
)
|
|
return _PROVIDER_INFO
|
|
|
|
|
|
def _get_provider_names() -> dict[str, str]:
|
|
"""Get provider display names."""
|
|
info = _get_provider_info()
|
|
return {name: data[0] for name, data in info.items() if name}
|
|
|
|
|
|
def _configure_provider(config: Config, provider_name: str) -> None:
|
|
"""Configure a single LLM provider."""
|
|
provider_config = getattr(config.providers, provider_name, None)
|
|
if provider_config is None:
|
|
console.print(f"[red]Unknown provider: {provider_name}[/red]")
|
|
return
|
|
|
|
display_name = _get_provider_names().get(provider_name, provider_name)
|
|
info = _get_provider_info()
|
|
default_api_base = info.get(provider_name, (None, None, None, None))[3]
|
|
|
|
if default_api_base and not provider_config.api_base:
|
|
provider_config.api_base = default_api_base
|
|
|
|
_configure_pydantic_model(
|
|
provider_config,
|
|
display_name,
|
|
)
|
|
|
|
|
|
def _configure_providers(config: Config) -> None:
|
|
"""Configure LLM providers."""
|
|
_show_section_header("LLM Providers", "Select a provider to configure API key and endpoint")
|
|
|
|
def get_provider_choices() -> list[str]:
|
|
"""Build provider choices with config status indicators."""
|
|
choices = []
|
|
for name, display in _get_provider_names().items():
|
|
provider = getattr(config.providers, name, None)
|
|
if provider and provider.api_key:
|
|
choices.append(f"{display} ✓")
|
|
else:
|
|
choices.append(display)
|
|
return choices + ["← Back"]
|
|
|
|
while True:
|
|
try:
|
|
choices = get_provider_choices()
|
|
answer = questionary.select(
|
|
"Select provider:",
|
|
choices=choices,
|
|
qmark="→",
|
|
).ask()
|
|
|
|
if answer is None or answer == "← Back":
|
|
break
|
|
|
|
# Extract provider name from choice (remove " ✓" suffix if present)
|
|
provider_name = answer.replace(" ✓", "")
|
|
# Find the actual provider key from display names
|
|
for name, display in _get_provider_names().items():
|
|
if display == provider_name:
|
|
_configure_provider(config, name)
|
|
break
|
|
|
|
except KeyboardInterrupt:
|
|
console.print("\n[dim]Returning to main menu...[/dim]")
|
|
break
|
|
|
|
|
|
# --- Channel Configuration ---
|
|
|
|
|
|
def _get_channel_info() -> dict[str, tuple[str, type[BaseModel]]]:
|
|
"""Get channel info (display name + config class) from channel modules."""
|
|
import importlib
|
|
|
|
from nanobot.channels.registry import discover_all
|
|
|
|
result = {}
|
|
for name, channel_cls in discover_all().items():
|
|
try:
|
|
mod = importlib.import_module(f"nanobot.channels.{name}")
|
|
config_cls = None
|
|
display_name = name.capitalize()
|
|
for attr_name in dir(mod):
|
|
attr = getattr(mod, attr_name)
|
|
if isinstance(attr, type) and issubclass(attr, BaseModel) and attr is not BaseModel:
|
|
if "Config" in attr_name:
|
|
config_cls = attr
|
|
if hasattr(channel_cls, "display_name"):
|
|
display_name = channel_cls.display_name
|
|
break
|
|
|
|
if config_cls:
|
|
result[name] = (display_name, config_cls)
|
|
except Exception:
|
|
logger.warning(f"Failed to load channel module: {name}")
|
|
return result
|
|
|
|
|
|
_CHANNEL_INFO: dict[str, tuple[str, type[BaseModel]]] | None = None
|
|
|
|
|
|
def _get_channel_names() -> dict[str, str]:
|
|
"""Get channel display names."""
|
|
global _CHANNEL_INFO
|
|
if _CHANNEL_INFO is None:
|
|
_CHANNEL_INFO = _get_channel_info()
|
|
return {name: info[0] for name, info in _CHANNEL_INFO.items() if name}
|
|
|
|
|
|
def _get_channel_config_class(channel: str) -> type[BaseModel] | None:
|
|
"""Get channel config class."""
|
|
global _CHANNEL_INFO
|
|
if _CHANNEL_INFO is None:
|
|
_CHANNEL_INFO = _get_channel_info()
|
|
return _CHANNEL_INFO.get(channel, (None, None))[1]
|
|
|
|
|
|
def _configure_channel(config: Config, channel_name: str) -> None:
|
|
"""Configure a single channel."""
|
|
channel_dict = getattr(config.channels, channel_name, None)
|
|
if channel_dict is None:
|
|
channel_dict = {}
|
|
setattr(config.channels, channel_name, channel_dict)
|
|
|
|
display_name = _get_channel_names().get(channel_name, channel_name)
|
|
config_cls = _get_channel_config_class(channel_name)
|
|
|
|
if config_cls is None:
|
|
console.print(f"[red]No configuration class found for {display_name}[/red]")
|
|
return
|
|
|
|
model = config_cls.model_validate(channel_dict) if channel_dict else config_cls()
|
|
|
|
def finalize(model: BaseModel):
|
|
new_dict = model.model_dump(by_alias=True, exclude_none=True)
|
|
setattr(config.channels, channel_name, new_dict)
|
|
|
|
_configure_pydantic_model(
|
|
model,
|
|
display_name,
|
|
finalize_hook=finalize,
|
|
)
|
|
|
|
|
|
def _configure_channels(config: Config) -> None:
|
|
"""Configure chat channels."""
|
|
_show_section_header("Chat Channels", "Select a channel to configure connection settings")
|
|
|
|
channel_names = list(_get_channel_names().keys())
|
|
choices = channel_names + ["← Back"]
|
|
|
|
while True:
|
|
try:
|
|
answer = questionary.select(
|
|
"Select channel:",
|
|
choices=choices,
|
|
qmark="→",
|
|
).ask()
|
|
|
|
if answer is None or answer == "← Back":
|
|
break
|
|
|
|
_configure_channel(config, answer)
|
|
except KeyboardInterrupt:
|
|
console.print("\n[dim]Returning to main menu...[/dim]")
|
|
break
|
|
|
|
|
|
# --- General Settings ---
|
|
|
|
|
|
def _configure_general_settings(config: Config, section: str) -> None:
|
|
"""Configure a general settings section."""
|
|
section_map = {
|
|
"Agent Settings": (config.agents.defaults, "Agent Defaults"),
|
|
"Gateway": (config.gateway, "Gateway Settings"),
|
|
"Tools": (config.tools, "Tools Settings"),
|
|
"Channel Common": (config.channels, "Channel Common Settings"),
|
|
}
|
|
|
|
if section not in section_map:
|
|
return
|
|
|
|
model, display_name = section_map[section]
|
|
|
|
if section == "Tools":
|
|
_configure_pydantic_model(
|
|
model,
|
|
display_name,
|
|
skip_fields={"mcp_servers"},
|
|
)
|
|
else:
|
|
_configure_pydantic_model(model, display_name)
|
|
|
|
|
|
def _configure_agents(config: Config) -> None:
|
|
"""Configure agent settings."""
|
|
_show_section_header("Agent Settings", "Configure default model, temperature, and behavior")
|
|
_configure_general_settings(config, "Agent Settings")
|
|
|
|
|
|
def _configure_gateway(config: Config) -> None:
|
|
"""Configure gateway settings."""
|
|
_show_section_header("Gateway", "Configure server host, port, and heartbeat")
|
|
_configure_general_settings(config, "Gateway")
|
|
|
|
|
|
def _configure_tools(config: Config) -> None:
|
|
"""Configure tools settings."""
|
|
_show_section_header("Tools", "Configure web search, shell exec, and other tools")
|
|
_configure_general_settings(config, "Tools")
|
|
|
|
|
|
# --- Summary ---
|
|
|
|
|
|
def _summarize_model(obj: BaseModel, indent: int = 2) -> list[tuple[str, str]]:
|
|
"""Recursively summarize a Pydantic model. Returns list of (field, value) tuples."""
|
|
items = []
|
|
|
|
for field_name, field_info in type(obj).model_fields.items():
|
|
value = getattr(obj, field_name, None)
|
|
field_type, _ = _get_field_type_info(field_info)
|
|
|
|
if value is None or value == "" or value == {} or value == []:
|
|
continue
|
|
|
|
display = _get_field_display_name(field_name, field_info)
|
|
|
|
if field_type == "model" and isinstance(value, BaseModel):
|
|
nested_items = _summarize_model(value, indent)
|
|
for nested_field, nested_value in nested_items:
|
|
items.append((f"{display}.{nested_field}", nested_value))
|
|
continue
|
|
|
|
formatted = _format_value(value, rich=False)
|
|
if formatted != "[not set]":
|
|
items.append((display, formatted))
|
|
|
|
return items
|
|
|
|
|
|
def _show_summary(config: Config) -> None:
|
|
"""Display configuration summary using rich."""
|
|
console.print()
|
|
|
|
# Providers table
|
|
provider_table = Table(show_header=False, box=None, padding=(0, 2))
|
|
provider_table.add_column("Provider", style="cyan")
|
|
provider_table.add_column("Status")
|
|
|
|
for name, display in _get_provider_names().items():
|
|
provider = getattr(config.providers, name, None)
|
|
if provider and provider.api_key:
|
|
provider_table.add_row(display, "[green]✓ configured[/green]")
|
|
else:
|
|
provider_table.add_row(display, "[dim]not configured[/dim]")
|
|
|
|
console.print(Panel(provider_table, title="[bold]LLM Providers[/bold]", border_style="blue"))
|
|
|
|
# Channels table
|
|
channel_table = Table(show_header=False, box=None, padding=(0, 2))
|
|
channel_table.add_column("Channel", style="cyan")
|
|
channel_table.add_column("Status")
|
|
|
|
for name, display in _get_channel_names().items():
|
|
channel = getattr(config.channels, name, None)
|
|
if channel:
|
|
enabled = (
|
|
channel.get("enabled", False)
|
|
if isinstance(channel, dict)
|
|
else getattr(channel, "enabled", False)
|
|
)
|
|
if enabled:
|
|
channel_table.add_row(display, "[green]✓ enabled[/green]")
|
|
else:
|
|
channel_table.add_row(display, "[dim]disabled[/dim]")
|
|
else:
|
|
channel_table.add_row(display, "[dim]not configured[/dim]")
|
|
|
|
console.print(Panel(channel_table, title="[bold]Chat Channels[/bold]", border_style="blue"))
|
|
|
|
# Agent Settings
|
|
agent_items = _summarize_model(config.agents.defaults)
|
|
if agent_items:
|
|
agent_table = Table(show_header=False, box=None, padding=(0, 2))
|
|
agent_table.add_column("Setting", style="cyan")
|
|
agent_table.add_column("Value")
|
|
for field, value in agent_items:
|
|
agent_table.add_row(field, value)
|
|
console.print(Panel(agent_table, title="[bold]Agent Settings[/bold]", border_style="blue"))
|
|
|
|
# Gateway
|
|
gateway_items = _summarize_model(config.gateway)
|
|
if gateway_items:
|
|
gw_table = Table(show_header=False, box=None, padding=(0, 2))
|
|
gw_table.add_column("Setting", style="cyan")
|
|
gw_table.add_column("Value")
|
|
for field, value in gateway_items:
|
|
gw_table.add_row(field, value)
|
|
console.print(Panel(gw_table, title="[bold]Gateway[/bold]", border_style="blue"))
|
|
|
|
# Tools
|
|
tools_items = _summarize_model(config.tools)
|
|
if tools_items:
|
|
tools_table = Table(show_header=False, box=None, padding=(0, 2))
|
|
tools_table.add_column("Setting", style="cyan")
|
|
tools_table.add_column("Value")
|
|
for field, value in tools_items:
|
|
tools_table.add_row(field, value)
|
|
console.print(Panel(tools_table, title="[bold]Tools[/bold]", border_style="blue"))
|
|
|
|
# Channel Common
|
|
channel_common_items = _summarize_model(config.channels)
|
|
if channel_common_items:
|
|
cc_table = Table(show_header=False, box=None, padding=(0, 2))
|
|
cc_table.add_column("Setting", style="cyan")
|
|
cc_table.add_column("Value")
|
|
for field, value in channel_common_items:
|
|
cc_table.add_row(field, value)
|
|
console.print(Panel(cc_table, title="[bold]Channel Common[/bold]", border_style="blue"))
|
|
|
|
|
|
# --- Main Entry Point ---
|
|
|
|
|
|
def run_onboard() -> Config:
|
|
"""Run the interactive onboarding questionnaire."""
|
|
config_path = get_config_path()
|
|
|
|
if config_path.exists():
|
|
config = load_config()
|
|
else:
|
|
config = Config()
|
|
|
|
while True:
|
|
try:
|
|
_show_main_menu_header()
|
|
|
|
answer = questionary.select(
|
|
"What would you like to configure?",
|
|
choices=[
|
|
"🔌 Configure LLM Provider",
|
|
"💬 Configure Chat Channel",
|
|
"🤖 Configure Agent Settings",
|
|
"🌐 Configure Gateway",
|
|
"🔧 Configure Tools",
|
|
"📋 View Configuration Summary",
|
|
"💾 Save and Exit",
|
|
],
|
|
qmark="→",
|
|
).ask()
|
|
|
|
if answer == "🔌 Configure LLM Provider":
|
|
_configure_providers(config)
|
|
elif answer == "💬 Configure Chat Channel":
|
|
_configure_channels(config)
|
|
elif answer == "🤖 Configure Agent Settings":
|
|
_configure_agents(config)
|
|
elif answer == "🌐 Configure Gateway":
|
|
_configure_gateway(config)
|
|
elif answer == "🔧 Configure Tools":
|
|
_configure_tools(config)
|
|
elif answer == "📋 View Configuration Summary":
|
|
_show_summary(config)
|
|
elif answer == "💾 Save and Exit":
|
|
break
|
|
except KeyboardInterrupt:
|
|
console.print(
|
|
"\n\n[yellow]Operation cancelled. Use 'Save and Exit' to save changes.[/yellow]"
|
|
)
|
|
break
|
|
|
|
return config
|