merge method

  1. @override
FakeChatModelOptions merge(
  1. covariant FakeChatModelOptions? other
)
override

Merges this RunnableOptions with another RunnableOptions.

Implementation

@override
FakeChatModelOptions merge(covariant final FakeChatModelOptions? other) {
  return copyWith(
    model: other?.model,
    metadata: other?.metadata,
    concurrencyLimit: other?.concurrencyLimit,
  );
}