(config: QueryEngineConfig)
| 217 | private loadedNestedMemoryPaths = new Set<string>() |
| 218 | |
| 219 | constructor(config: QueryEngineConfig) { |
| 220 | this.config = config |
| 221 | this.mutableMessages = config.initialMessages ?? [] |
| 222 | this.abortController = config.abortController ?? createAbortController() |
| 223 | this.permissionDenials = [] |
| 224 | this.readFileState = config.readFileCache |
| 225 | this.totalUsage = EMPTY_USAGE |
| 226 | } |
| 227 | |
| 228 | async *submitMessage( |
| 229 | prompt: string | ContentBlockParam[], |
nothing calls this directly
no test coverage detected