You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Reactivate a previous dashboard-sourced version as the active override. Use get_prompt_versions to find dashboard versions that can be reactivated.",
215
215
},
216
+
list_agents: {
217
+
name: "list_agents",
218
+
title: "List Agents",
219
+
description:
220
+
"List all chat agents in the current worker. Agents are tasks created with chat.agent() or chat.customAgent(). Use start_agent_chat with an agent's slug to start a conversation.",
221
+
},
222
+
start_agent_chat: {
223
+
name: "start_agent_chat",
224
+
title: "Start Agent Chat",
225
+
description:
226
+
"Start a conversation with a chat agent. Returns a chatId you can use with send_agent_message. Optionally preloads the agent so it initializes before the first message.",
227
+
},
228
+
send_agent_message: {
229
+
name: "send_agent_message",
230
+
title: "Send Agent Message",
231
+
description:
232
+
"Send a message to an active agent chat and get the full response text back. Use the chatId from start_agent_chat. The agent remembers full context from previous messages in the same chat.",
233
+
},
234
+
close_agent_chat: {
235
+
name: "close_agent_chat",
236
+
title: "Close Agent Chat",
237
+
description:
238
+
"Close an agent chat conversation. The agent exits its loop gracefully. Without this, the agent will close on its own when its idle timeout expires.",
0 commit comments