File tree Expand file tree Collapse file tree
src/seclab_taskflow_agent Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def get_banner() -> str:
3838 ║ TASKFLOW AGENT ║
3939 ║ ║
4040 ╠══════════════════════════════════════════════════════════════════╣
41- ║ AI API Endpoint: { api_endpoint :<48 } ║
41+ ║ Default AI API Endpoint: { api_endpoint :<40 } ║
4242 ╚══════════════════════════════════════════════════════════════════╝
4343 """
4444 return banner
Original file line number Diff line number Diff line change @@ -276,8 +276,10 @@ async def deploy_task_agents(
276276
277277 task_id = str (uuid .uuid4 ())
278278 await render_model_output (f"** 🤖💪 Deploying Task Flow Agent(s): { list (agents .keys ())} \n " )
279- await render_model_output (f"** 🤖💪 Task ID: { task_id } \n " )
280- await render_model_output (f"** 🤖💪 Model : { model } { ', params: ' + str (model_par ) if model_par else '' } \n " )
279+ await render_model_output (f"** 🤖💪 Task ID : { task_id } \n " )
280+ await render_model_output (f"** 🤖💪 Model : { model } { ', params: ' + str (model_par ) if model_par else '' } \n " )
281+ if endpoint :
282+ await render_model_output (f"** 🤖💪 Endpoint: { endpoint } \n " )
281283
282284 # Resolve toolboxes from personality definitions or override
283285 toolboxes : list [str ] = []
You can’t perform that action at this time.
0 commit comments