Skip to content

Commit 234e23c

Browse files
committed
fix(client): merge call-site MessageSendConfiguration using field names (by_alias=False)
1 parent cab68ed commit 234e23c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/a2a/client/base_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ async def send_message(
7474
)
7575
if configuration is not None:
7676
overrides = configuration.model_dump(
77-
exclude_unset=True, exclude_none=True
77+
exclude_unset=True,
78+
exclude_none=True,
79+
by_alias=False,
7880
)
7981
config = base_config.model_copy(update=overrides)
8082
else:

0 commit comments

Comments
 (0)