Merge branch 'fix/g08' into fix/integrated

# Conflicts:
#	internal/store/migrations.go
This commit is contained in:
kami
2026-08-01 14:38:39 +04:00
39 changed files with 2753 additions and 363 deletions
+4 -3
View File
@@ -533,9 +533,10 @@ func (c *Client) CaptureAppend(ctx context.Context, req CaptureAppendReq) (Captu
return r, nil
}
// CaptureStop ends the session. Slow — it transcribes and summarises the whole
// recording so pass a context with room. Set Discard to throw the recording
// away instead.
// CaptureStop ends the session. It transcribes the whole recording before
// answering, so pass a context with room; the summary is written afterwards by
// the daemon and is usually absent from the response. Set Discard to throw the
// recording away instead. Token comes from CaptureStart.
func (c *Client) CaptureStop(ctx context.Context, req CaptureStopReq) (CaptureStopResp, error) {
var r CaptureStopResp
if err := c.call(ctx, MethodCaptureStop, req, &r); err != nil {