(options: FilesystemMemoryServiceOptions)
| 389 | readonly #store: RuntimeStateStore | null; |
| 390 | |
| 391 | constructor(options: FilesystemMemoryServiceOptions) { |
| 392 | this.#workspaceRoot = options.workspaceRoot; |
| 393 | this.#resolveWorkspaceDir = options.resolveWorkspaceDir ?? null; |
| 394 | this.#store = options.store ?? null; |
| 395 | } |
| 396 | |
| 397 | async search(payload: Record<string, unknown>): Promise<Record<string, unknown>> { |
| 398 | const workspaceId = requiredString(payload.workspace_id, "workspace_id"); |
nothing calls this directly
no outgoing calls
no test coverage detected