(raw string)
| 796 | } |
| 797 | |
| 798 | func normalizeExtractorJSONLLine(raw string) string { |
| 799 | line := strings.TrimSpace(raw) |
| 800 | switch line { |
| 801 | case "", "```", "```json", "```jsonl": |
| 802 | return "" |
| 803 | default: |
| 804 | return line |
| 805 | } |
| 806 | } |
| 807 | |
| 808 | func candidateFromExtractedLine( |
| 809 | line extractedMemoryLine, |
no outgoing calls
no test coverage detected