(type: string, title: string, rowCount: number, truncated: boolean, locale?: string)
| 92 | } |
| 93 | |
| 94 | function summarizeChart(type: string, title: string, rowCount: number, truncated: boolean, locale?: string): string { |
| 95 | if (locale?.startsWith('zh')) { |
| 96 | return `已生成图表「${title}」(${type},${rowCount} 行数据${truncated ? ',已截断' : ''})。` |
| 97 | } |
| 98 | return `Generated chart "${title}" (${type}, ${rowCount} rows${truncated ? ', truncated' : ''}).` |
| 99 | } |
| 100 | |
| 101 | function summarizeChartForModel( |
| 102 | type: string, |
no outgoing calls
no test coverage detected