| 27 | // ============================================================================= |
| 28 | |
| 29 | interface ParsedStructuredQuery { |
| 30 | searches: ExpandedQuery[]; |
| 31 | intent?: string; |
| 32 | } |
| 33 | |
| 34 | function parseStructuredQuery(query: string): ParsedStructuredQuery | null { |
| 35 | const rawLines = query.split('\n').map((line, idx) => ({ |
nothing calls this directly
no outgoing calls
no test coverage detected