Update agent_proxy.js

This commit is contained in:
Solenopsisbot 2025-05-13 17:13:58 +10:00 committed by GitHub
parent a6a5330075
commit 0b8aeb8464
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,3 +71,7 @@ export const serverProxy = new AgentServerProxy();
export function sendBotChatToServer(agentName, json) {
serverProxy.getSocket().emit('chat-message', agentName, json);
}
export function sendResponseToServer(agentName, message) {
serverProxy.getSocket().emit('response-message', agentName, message);
}