Click or drag to resize

HomeControllerSWIGetAIAgentProgress Method

Returns and clears the progress ("thinking") steps queued by the AI chat that is currently running for this session (skill loads, tool calls). The chat panel polls this while a request is in flight to show a live, collapsible step list.

Namespace: SealWebServer.Controllers
Assembly: SealWebServer (in SealWebServer.exe) Version: 10.0.1.0+a44cd3a7f03c2bf3cdbd971a878c679e40bed08a
Syntax
C#
public ActionResult SWIGetAIAgentProgress(
	string sessionId
)

Parameters

sessionId  String
 

Return Value

ActionResult
Remarks
Like SWICancelAIAgentResponse(String) this runs concurrently with the in-progress SWIGetAIAgentResponse(String, String) on the same session and intentionally skips checkSWIAuthentication() to avoid touching the non-thread-safe session store.
See Also