Skip to content

Commit 3f76db8

Browse files
authored
Merge pull request #251 from tcdent/init-emoji
Highlight next `init` steps with emoji.
2 parents 49033de + 411aeea commit 3f76db8

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

β€Žagentstack/cli/init.pyβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ def init_project(
105105
log.success("πŸš€ AgentStack project generated successfully!\n")
106106
log.info(
107107
" To get started, activate the virtual environment with:\n"
108-
f" cd {conf.PATH}\n"
109-
" source .venv/bin/activate\n\n"
108+
f" πŸ’« cd {conf.PATH}\n"
109+
" 🌟 source .venv/bin/activate\n\n"
110110
" Run your new agent with:\n"
111-
" agentstack run\n\n"
111+
" ✨ agentstack run\n\n"
112112
" Or, run `agentstack quickstart` or `agentstack docs` for more next steps.\n"
113113
)

β€Žagentstack/generation/agent_generation.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ def add_agent(
3737
except ValidationError as e:
3838
raise ValidationError(f"Error adding agent to project:\n{e}")
3939

40-
log.success(f"Added agent \"{agent.name}\" to your AgentStack project successfully!")
40+
log.success(f"πŸ€– Added agent \"{agent.name}\" to your AgentStack project successfully!")

β€Žagentstack/generation/task_generation.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ def add_task(
3434
except ValidationError as e:
3535
raise ValidationError(f"Error adding task to project:\n{e}")
3636

37-
log.success(f"Added task \"{task.name}\" to your AgentStack project successfully!")
37+
log.success(f"πŸ“ƒ Added task \"{task.name}\" to your AgentStack project successfully!")

β€Žagentstack/generation/tool_generation.pyβ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,9 @@ def add_tool(name: str, agents: Optional[list[str]] = []):
3939
if not agents: # If no agents are specified, add the tool to all agents
4040
agents = frameworks.get_agent_method_names()
4141
for agent_name in agents:
42-
log.info(f'Adding tool {tool.name} to agent {agent_name}')
4342
frameworks.add_tool(tool, agent_name)
4443

45-
log.success(f'πŸ”¨ Tool {tool.name} added to agentstack project successfully')
44+
log.success(f'πŸ”¨ Tool {tool.name} added to agentstack project successfully!')
4645
if tool.cta:
4746
log.notify(f'πŸͺ© {tool.cta}')
4847

0 commit comments

Comments
Β (0)