@@ -1106,7 +1106,6 @@ def stream(
1106
1106
body = maybe_transform (
1107
1107
{
1108
1108
"assistant_id" : assistant_id ,
1109
- "include" : include ,
1110
1109
"additional_instructions" : additional_instructions ,
1111
1110
"additional_messages" : additional_messages ,
1112
1111
"instructions" : instructions ,
@@ -1126,7 +1125,11 @@ def stream(
1126
1125
run_create_params .RunCreateParams ,
1127
1126
),
1128
1127
options = make_request_options (
1129
- extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
1128
+ extra_headers = extra_headers ,
1129
+ extra_query = extra_query ,
1130
+ extra_body = extra_body ,
1131
+ timeout = timeout ,
1132
+ query = maybe_transform ({"include" : include }, run_create_params .RunCreateParams ),
1130
1133
),
1131
1134
cast_to = Run ,
1132
1135
stream = True ,
@@ -1899,7 +1902,6 @@ async def create(
1899
1902
body = await async_maybe_transform (
1900
1903
{
1901
1904
"assistant_id" : assistant_id ,
1902
- "include" : include ,
1903
1905
"additional_instructions" : additional_instructions ,
1904
1906
"additional_messages" : additional_messages ,
1905
1907
"instructions" : instructions ,
@@ -2472,7 +2474,6 @@ def stream(
2472
2474
body = maybe_transform (
2473
2475
{
2474
2476
"assistant_id" : assistant_id ,
2475
- "include" : include ,
2476
2477
"additional_instructions" : additional_instructions ,
2477
2478
"additional_messages" : additional_messages ,
2478
2479
"instructions" : instructions ,
@@ -2492,7 +2493,11 @@ def stream(
2492
2493
run_create_params .RunCreateParams ,
2493
2494
),
2494
2495
options = make_request_options (
2495
- extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
2496
+ extra_headers = extra_headers ,
2497
+ extra_query = extra_query ,
2498
+ extra_body = extra_body ,
2499
+ timeout = timeout ,
2500
+ query = maybe_transform ({"include" : include }, run_create_params .RunCreateParams ),
2496
2501
),
2497
2502
cast_to = Run ,
2498
2503
stream = True ,
0 commit comments