File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ function M:handle_content(method, params)
211211 local eca = require (" eca" )
212212 local sidebar = eca .get (false )
213213 if sidebar and params then
214- sidebar :_handle_server_content (params )
214+ sidebar :handle_chat_content_received (params )
215215 end
216216 end
217217end
Original file line number Diff line number Diff line change @@ -1172,7 +1172,7 @@ function M:_send_message(message)
11721172 -- Response will come through server notification handler
11731173 self :_add_input_line ()
11741174
1175- self :_handle_server_content (result .params )
1175+ self :handle_chat_content_received (result .params )
11761176 end )
11771177 else
11781178 self :_add_message (" assistant" , " ❌ **Error**: ECA server is not running. Please check server status." )
@@ -1181,7 +1181,7 @@ function M:_send_message(message)
11811181end
11821182
11831183--- @param params table Server content notification
1184- function M :_handle_server_content (params )
1184+ function M :handle_chat_content_received (params )
11851185 if not params or not params .content then
11861186 return
11871187 end
You can’t perform that action at this time.
0 commit comments