Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions agentstack/cli/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ def init_project(
log.success("🚀 AgentStack project generated successfully!\n")
log.info(
" To get started, activate the virtual environment with:\n"
f" cd {conf.PATH}\n"
" source .venv/bin/activate\n\n"
f" 💫 cd {conf.PATH}\n"
" 🌟 source .venv/bin/activate\n\n"
" Run your new agent with:\n"
" agentstack run\n\n"
" agentstack run\n\n"
" Or, run `agentstack quickstart` or `agentstack docs` for more next steps.\n"
)
2 changes: 1 addition & 1 deletion agentstack/generation/agent_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ def add_agent(
except ValidationError as e:
raise ValidationError(f"Error adding agent to project:\n{e}")

log.success(f"Added agent \"{agent.name}\" to your AgentStack project successfully!")
log.success(f"🤖 Added agent \"{agent.name}\" to your AgentStack project successfully!")
2 changes: 1 addition & 1 deletion agentstack/generation/task_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ def add_task(
except ValidationError as e:
raise ValidationError(f"Error adding task to project:\n{e}")

log.success(f"Added task \"{task.name}\" to your AgentStack project successfully!")
log.success(f"📃 Added task \"{task.name}\" to your AgentStack project successfully!")
3 changes: 1 addition & 2 deletions agentstack/generation/tool_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ def add_tool(name: str, agents: Optional[list[str]] = []):
if not agents: # If no agents are specified, add the tool to all agents
agents = frameworks.get_agent_method_names()
for agent_name in agents:
log.info(f'Adding tool {tool.name} to agent {agent_name}')
frameworks.add_tool(tool, agent_name)

log.success(f'🔨 Tool {tool.name} added to agentstack project successfully')
log.success(f'🔨 Tool {tool.name} added to agentstack project successfully!')
if tool.cta:
log.notify(f'🪩 {tool.cta}')

Expand Down