diff --git a/agentstack/cli/cli.py b/agentstack/cli/cli.py index 18471ab..d7eecc4 100644 --- a/agentstack/cli/cli.py +++ b/agentstack/cli/cli.py @@ -199,9 +199,11 @@ def ask_design() -> dict: def ask_tools() -> list: - use_tools = inquirer.confirm( - message="Do you want to add agent tools now? (you can do this later with `agentstack tools add `)", - ) + # use_tools = inquirer.confirm( + # message="Do you want to add agent tools now? (you can do this later with `agentstack tools add `)", + # ) + + use_tools = False if not use_tools: return [] diff --git a/agentstack/tools/tools.json b/agentstack/tools/tools.json index e8216e4..45451fa 100644 --- a/agentstack/tools/tools.json +++ b/agentstack/tools/tools.json @@ -42,6 +42,6 @@ }], "vision": [{ "name": "vision", - "url": "AgentStack default tool" + "url": "AgentStack core tool" }] } diff --git a/pyproject.toml b/pyproject.toml index a2461e1..75fb0b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "agentstack" -version = "0.1.7-rc1" +version = "0.1.7-rc2" description = "The fastest way to build robust AI agents" authors = [ { name="Braelyn Boynton", email="bboynton97@gmail.com" }