Skip to content

Commit 6248c3a

Browse files
committed
remove tools wizard
1 parent 2437ebe commit 6248c3a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

agentstack/cli/cli.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,11 @@ def ask_design() -> dict:
199199

200200

201201
def ask_tools() -> list:
202-
use_tools = inquirer.confirm(
203-
message="Do you want to add agent tools now? (you can do this later with `agentstack tools add <tool_name>`)",
204-
)
202+
# use_tools = inquirer.confirm(
203+
# message="Do you want to add agent tools now? (you can do this later with `agentstack tools add <tool_name>`)",
204+
# )
205+
206+
use_tools = False
205207

206208
if not use_tools:
207209
return []

agentstack/tools/tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
}],
4343
"vision": [{
4444
"name": "vision",
45-
"url": "AgentStack default tool"
45+
"url": "AgentStack core tool"
4646
}]
4747
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "agentstack"
7-
version = "0.1.7-rc1"
7+
version = "0.1.7-rc2"
88
description = "The fastest way to build robust AI agents"
99
authors = [
1010
{ name="Braelyn Boynton", email="[email protected]" }

0 commit comments

Comments
 (0)