()
| 177 | } |
| 178 | |
| 179 | func ClearBackendTraces() { |
| 180 | backendMu.Lock() |
| 181 | if backendTraceBuffer != nil { |
| 182 | backendTraceBuffer.Clear() |
| 183 | } |
| 184 | backendMu.Unlock() |
| 185 | } |
| 186 | |
| 187 | func GenerateLLMSummary(messages schema.Messages, prompt string) string { |
| 188 | if len(messages) > 0 { |
no test coverage detected