create_task_in_config_context(
coro_factory: Callable[[], Coroutine[Any, Any, Any]],
config: RunnableConfig
Create an asyncio.Task that inherits config as the child runnable context.
asyncio.create_task snapshots the current contextvars onto the new task,
so calling create_task while the config context is set ensures the task
sees config via var_child_runnable_config and any tracing parent.