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
2 changes: 1 addition & 1 deletion src/seclab_taskflow_agent/banner.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_banner() -> str:
║ TASKFLOW AGENT ║
║ ║
╠══════════════════════════════════════════════════════════════════╣
║ AI API Endpoint: {api_endpoint:<48}║
Default AI API Endpoint: {api_endpoint:<40}║
Comment thread
p- marked this conversation as resolved.
╚══════════════════════════════════════════════════════════════════╝
"""
return banner
6 changes: 4 additions & 2 deletions src/seclab_taskflow_agent/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,10 @@ async def deploy_task_agents(

task_id = str(uuid.uuid4())
await render_model_output(f"** 🤖💪 Deploying Task Flow Agent(s): {list(agents.keys())}\n")
await render_model_output(f"** 🤖💪 Task ID: {task_id}\n")
await render_model_output(f"** 🤖💪 Model : {model}{', params: ' + str(model_par) if model_par else ''}\n")
await render_model_output(f"** 🤖💪 Task ID : {task_id}\n")
await render_model_output(f"** 🤖💪 Model : {model}{', params: ' + str(model_par) if model_par else ''}\n")
if endpoint:
await render_model_output(f"** 🤖💪 Endpoint: {endpoint}\n")

# Resolve toolboxes from personality definitions or override
toolboxes: list[str] = []
Expand Down
Loading