(config: QueryEngineConfig)
| 206 | private loadedNestedMemoryPaths = new Set<string>() |
| 207 | |
| 208 | constructor(config: QueryEngineConfig) { |
| 209 | this.config = config |
| 210 | this.mutableMessages = config.initialMessages ?? [] |
| 211 | this.abortController = config.abortController ?? createAbortController() |
| 212 | this.permissionDenials = [] |
| 213 | this.readFileState = config.readFileCache |
| 214 | this.totalUsage = EMPTY_USAGE |
| 215 | } |
| 216 | |
| 217 | async *submitMessage( |
| 218 | prompt: string | ContentBlockParam[], |
nothing calls this directly
no test coverage detected