(
params: QueryParams,
deps?: { runQuery?: ReplQueryRunner },
)
| 1314 | * semantics in the same patch. |
| 1315 | */ |
| 1316 | export async function* runReplTurn( |
| 1317 | params: QueryParams, |
| 1318 | deps?: { runQuery?: ReplQueryRunner }, |
| 1319 | ): AsyncGenerator<QueryEngineReplEvent, Terminal> { |
| 1320 | return yield* QueryEngine.runPreparedTurn(params, deps) |
| 1321 | } |
| 1322 | |
| 1323 | /** |
| 1324 | * Sends a single prompt to the API and returns the response. |
nothing calls this directly
no test coverage detected