(query: string)
| 115 | |
| 116 | /** Third user content block: timestamp + the actual user query. Cached. */ |
| 117 | export function buildQueryBlock(query: string): string { |
| 118 | return `<timestamp>\n${formatTimestamp(new Date())}\n</timestamp>\n<user_query>\n${query}\n</user_query>`; |
| 119 | } |
nothing calls this directly
no test coverage detected