@@ -51,6 +51,7 @@ def create(
5151 question : str ,
5252 role_id : Optional [str ] | NotGiven = NOT_GIVEN ,
5353 role_variables : Optional [object ] | NotGiven = NOT_GIVEN ,
54+ separate_params : bool | NotGiven = NOT_GIVEN ,
5455 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5556 # The extra values given here take precedence over values defined on the client or passed to this method.
5657 extra_headers : Headers | None = None ,
@@ -71,6 +72,8 @@ def create(
7172
7273 role_variables: 在扮演这个角色时需要传递的变量值,用 Key-Value 形式传递
7374
75+ separate_params: 是否将参数分开传递
76+
7477 extra_headers: Send extra headers
7578
7679 extra_query: Add additional query parameters to the request
@@ -87,6 +90,7 @@ def create(
8790 "question" : question ,
8891 "role_id" : role_id ,
8992 "role_variables" : role_variables ,
93+ "separate_params" : separate_params ,
9094 },
9195 sql_create_params .SqlCreateParams ,
9296 ),
@@ -175,6 +179,7 @@ async def create(
175179 question : str ,
176180 role_id : Optional [str ] | NotGiven = NOT_GIVEN ,
177181 role_variables : Optional [object ] | NotGiven = NOT_GIVEN ,
182+ separate_params : bool | NotGiven = NOT_GIVEN ,
178183 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
179184 # The extra values given here take precedence over values defined on the client or passed to this method.
180185 extra_headers : Headers | None = None ,
@@ -195,6 +200,8 @@ async def create(
195200
196201 role_variables: 在扮演这个角色时需要传递的变量值,用 Key-Value 形式传递
197202
203+ separate_params: 是否将参数分开传递
204+
198205 extra_headers: Send extra headers
199206
200207 extra_query: Add additional query parameters to the request
@@ -211,6 +218,7 @@ async def create(
211218 "question" : question ,
212219 "role_id" : role_id ,
213220 "role_variables" : role_variables ,
221+ "separate_params" : separate_params ,
214222 },
215223 sql_create_params .SqlCreateParams ,
216224 ),
0 commit comments