(sessionKeys: string[])
| 174 | } |
| 175 | |
| 176 | async function fetchSessionLabelSummaries(sessionKeys: string[]): Promise<SessionLabelSummary[]> { |
| 177 | if (sessionKeys.length === 0) return []; |
| 178 | const response = await hostApi.sessions.summaries({ sessionKeys }); |
| 179 | return Array.isArray(response?.summaries) ? response.summaries : []; |
| 180 | } |
| 181 | |
| 182 | function applySessionLabelSummaries( |
| 183 | set: ChatSet, |
no outgoing calls
no test coverage detected