toParallelToolCallsRaw
inline fun <TArgs, TResult> Flow<TArgs>.toParallelToolCallsRaw(safeTool: SafeTool<TArgs, TResult>, concurrency: Int = 16): Flow<String>(source)
Converts each flow item into a parallel tool call and emits only raw string content.
inline fun <TArgs, TResult> Flow<TArgs>.toParallelToolCallsRaw(toolClass: KClass<out Tool<TArgs, TResult>>, concurrency: Int = 16): Flow<String>(source)
Converts each flow item into a parallel tool call using a tool class and emits raw string content.