Skip to content

Commit 83a1c17

Browse files
committed
Adding metadata in test_agent
1 parent 42ccb90 commit 83a1c17

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_agent.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3730,6 +3730,7 @@ def test_binary_content_serializable():
37303730
'instructions': None,
37313731
'kind': 'request',
37323732
'run_id': IsStr(),
3733+
'metadata': None,
37333734
},
37343735
{
37353736
'parts': [{'content': 'success (no tool calls)', 'id': None, 'part_kind': 'text'}],
@@ -3751,6 +3752,7 @@ def test_binary_content_serializable():
37513752
'kind': 'response',
37523753
'finish_reason': None,
37533754
'run_id': IsStr(),
3755+
'metadata': None,
37543756
},
37553757
]
37563758
)
@@ -3788,6 +3790,7 @@ def test_image_url_serializable_missing_media_type():
37883790
'instructions': None,
37893791
'kind': 'request',
37903792
'run_id': IsStr(),
3793+
'metadata': None,
37913794
},
37923795
{
37933796
'parts': [{'content': 'success (no tool calls)', 'id': None, 'part_kind': 'text'}],
@@ -3809,6 +3812,7 @@ def test_image_url_serializable_missing_media_type():
38093812
'kind': 'response',
38103813
'finish_reason': None,
38113814
'run_id': IsStr(),
3815+
'metadata': None,
38123816
},
38133817
]
38143818
)
@@ -3853,6 +3857,7 @@ def test_image_url_serializable():
38533857
'instructions': None,
38543858
'kind': 'request',
38553859
'run_id': IsStr(),
3860+
'metadata': None,
38563861
},
38573862
{
38583863
'parts': [{'content': 'success (no tool calls)', 'id': None, 'part_kind': 'text'}],
@@ -3874,6 +3879,7 @@ def test_image_url_serializable():
38743879
'kind': 'response',
38753880
'finish_reason': None,
38763881
'run_id': IsStr(),
3882+
'metadata': None,
38773883
},
38783884
]
38793885
)
@@ -4353,6 +4359,7 @@ def foo_tool(foo: Foo) -> int:
43534359
'instructions': None,
43544360
'kind': 'request',
43554361
'run_id': IsStr(),
4362+
'metadata': None,
43564363
}
43574364
)
43584365

0 commit comments

Comments
 (0)