NewSessionSummaryManager 创建会话摘要管理器
(provider provider.Provider, config SessionSummaryConfig)
| 117 | |
| 118 | // NewSessionSummaryManager 创建会话摘要管理器 |
| 119 | func NewSessionSummaryManager(provider provider.Provider, config SessionSummaryConfig) *SessionSummaryManager { |
| 120 | return &SessionSummaryManager{ |
| 121 | summaries: make(map[string]*SessionSummary), |
| 122 | provider: provider, |
| 123 | config: config, |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | // GenerateSummary 生成会话摘要 |
| 128 | func (m *SessionSummaryManager) GenerateSummary( |
no outgoing calls