From cfa68cf66ad9dd1aa0278fa1f25f3c0b519c90d6 Mon Sep 17 00:00:00 2001 From: gregdrizz Date: Tue, 25 Jul 2023 19:22:28 +0300 Subject: [PATCH] added emojis to the auto agents --- agent/llm_utils.py | 1 + main.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/agent/llm_utils.py b/agent/llm_utils.py index d8f172fef..f13cab214 100644 --- a/agent/llm_utils.py +++ b/agent/llm_utils.py @@ -151,6 +151,7 @@ def choose_agent_configuration(): "Academic Research Agent", "Computer Security Analyst Agent" if an agent for the field required doesn't exist make one up + fit an emoji to every agent before the agent name """, }, "instructions": { diff --git a/main.py b/main.py index 554143e70..09c089570 100644 --- a/main.py +++ b/main.py @@ -55,7 +55,7 @@ async def websocket_endpoint(websocket: WebSocket): else: agent_role_prompt = None - await websocket.send_json({"type": "logs", "output": f"🕵️ Agent: {agent}"}) + await websocket.send_json({"type": "logs", "output": f"{agent}"}) if task and report_type and agent: await manager.start_streaming(task, report_type, agent, agent_role_prompt, websocket) else: