161 167 |
|
162 168 | // If this is an error, defer to the non-streaming parser
|
163 169 | if (!response.status().is_success() && response.status().as_u16() != 200) || force_error {
|
164 170 | return ::std::option::Option::None;
|
165 171 | }
|
166 172 | ::std::option::Option::Some(crate::protocol_serde::type_erase_result(
|
167 173 | crate::protocol_serde::shape_invoke_model_with_response_stream::de_invoke_model_with_response_stream_http_response(response),
|
168 174 | ))
|
169 175 | }
|
170 176 |
|
171 - | fn deserialize_nonstreaming(
|
177 + | fn deserialize_nonstreaming_with_config(
|
172 178 | &self,
|
173 179 | response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
|
180 + | _cfg: &::aws_smithy_types::config_bag::ConfigBag,
|
174 181 | ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
|
175 182 | // For streaming operations, we only hit this case if its an error
|
176 183 | let body = response.body().bytes().expect("body loaded");
|
177 - | crate::protocol_serde::type_erase_result(
|
178 - | crate::protocol_serde::shape_invoke_model_with_response_stream::de_invoke_model_with_response_stream_http_error(
|
179 - | response.status().as_u16(),
|
180 - | response.headers(),
|
181 - | body,
|
182 - | ),
|
183 - | )
|
184 + | let status = response.status().as_u16();
|
185 + | let headers = response.headers();
|
186 + | #[allow(unused_mut)]
|
187 + | let mut generic_builder = crate::protocol_serde::parse_http_error_metadata(status, headers, body).map_err(|e| {
|
188 + | ::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(::aws_smithy_runtime_api::box_error::BoxError::from(e))
|
189 + | })?;
|
190 + | generic_builder = ::aws_types::request_id::apply_request_id(generic_builder, headers);
|
191 + | let generic = generic_builder.build();
|
192 + | let error_code = match generic.code() {
|
193 + | ::std::option::Option::Some(code) => code,
|
194 + | ::std::option::Option::None => {
|
195 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
196 + | ::aws_smithy_runtime_api::box_error::BoxError::from(
|
197 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::unhandled(generic),
|
198 + | ),
|
199 + | ))
|
200 + | }
|
201 + | };
|
202 + | let _error_message = generic.message().map(|msg| msg.to_owned());
|
203 + | let protocol = _cfg
|
204 + | .load::<::aws_smithy_schema::protocol::SharedClientProtocol>()
|
205 + | .expect("a SharedClientProtocol is required");
|
206 + | let err = match error_code {
|
207 + | "AccessDeniedException" => {
|
208 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::AccessDeniedException({
|
209 + | let mut tmp = match protocol
|
210 + | .deserialize_response(response, crate::types::error::AccessDeniedException::SCHEMA, _cfg)
|
211 + | .and_then(|mut deser| {
|
212 + | crate::types::error::AccessDeniedException::deserialize_with_response(
|
213 + | &mut *deser,
|
214 + | response.headers(),
|
215 + | response.status().into(),
|
216 + | body,
|
217 + | )
|
218 + | }) {
|
219 + | ::std::result::Result::Ok(val) => val,
|
220 + | ::std::result::Result::Err(e) => {
|
221 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
222 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
223 + | ))
|
224 + | }
|
225 + | };
|
226 + | tmp.meta = generic;
|
227 + | if tmp.message.is_none() {
|
228 + | tmp.message = _error_message;
|
229 + | }
|
230 + | tmp
|
231 + | })
|
232 + | }
|
233 + | "InternalServerException" => {
|
234 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::InternalServerException({
|
235 + | let mut tmp = match protocol
|
236 + | .deserialize_response(response, crate::types::error::InternalServerException::SCHEMA, _cfg)
|
237 + | .and_then(|mut deser| {
|
238 + | crate::types::error::InternalServerException::deserialize_with_response(
|
239 + | &mut *deser,
|
240 + | response.headers(),
|
241 + | response.status().into(),
|
242 + | body,
|
243 + | )
|
244 + | }) {
|
245 + | ::std::result::Result::Ok(val) => val,
|
246 + | ::std::result::Result::Err(e) => {
|
247 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
248 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
249 + | ))
|
250 + | }
|
251 + | };
|
252 + | tmp.meta = generic;
|
253 + | if tmp.message.is_none() {
|
254 + | tmp.message = _error_message;
|
255 + | }
|
256 + | tmp
|
257 + | })
|
258 + | }
|
259 + | "ModelErrorException" => crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ModelErrorException({
|
260 + | let mut tmp = match protocol
|
261 + | .deserialize_response(response, crate::types::error::ModelErrorException::SCHEMA, _cfg)
|
262 + | .and_then(|mut deser| {
|
263 + | crate::types::error::ModelErrorException::deserialize_with_response(
|
264 + | &mut *deser,
|
265 + | response.headers(),
|
266 + | response.status().into(),
|
267 + | body,
|
268 + | )
|
269 + | }) {
|
270 + | ::std::result::Result::Ok(val) => val,
|
271 + | ::std::result::Result::Err(e) => {
|
272 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
273 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
274 + | ))
|
275 + | }
|
276 + | };
|
277 + | tmp.meta = generic;
|
278 + | if tmp.message.is_none() {
|
279 + | tmp.message = _error_message;
|
280 + | }
|
281 + | tmp
|
282 + | }),
|
283 + | "ModelNotReadyException" => {
|
284 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ModelNotReadyException({
|
285 + | let mut tmp = match protocol
|
286 + | .deserialize_response(response, crate::types::error::ModelNotReadyException::SCHEMA, _cfg)
|
287 + | .and_then(|mut deser| {
|
288 + | crate::types::error::ModelNotReadyException::deserialize_with_response(
|
289 + | &mut *deser,
|
290 + | response.headers(),
|
291 + | response.status().into(),
|
292 + | body,
|
293 + | )
|
294 + | }) {
|
295 + | ::std::result::Result::Ok(val) => val,
|
296 + | ::std::result::Result::Err(e) => {
|
297 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
298 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
299 + | ))
|
300 + | }
|
301 + | };
|
302 + | tmp.meta = generic;
|
303 + | if tmp.message.is_none() {
|
304 + | tmp.message = _error_message;
|
305 + | }
|
306 + | tmp
|
307 + | })
|
308 + | }
|
309 + | "ModelStreamErrorException" => {
|
310 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ModelStreamErrorException({
|
311 + | let mut tmp = match protocol
|
312 + | .deserialize_response(response, crate::types::error::ModelStreamErrorException::SCHEMA, _cfg)
|
313 + | .and_then(|mut deser| {
|
314 + | crate::types::error::ModelStreamErrorException::deserialize_with_response(
|
315 + | &mut *deser,
|
316 + | response.headers(),
|
317 + | response.status().into(),
|
318 + | body,
|
319 + | )
|
320 + | }) {
|
321 + | ::std::result::Result::Ok(val) => val,
|
322 + | ::std::result::Result::Err(e) => {
|
323 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
324 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
325 + | ))
|
326 + | }
|
327 + | };
|
328 + | tmp.meta = generic;
|
329 + | if tmp.message.is_none() {
|
330 + | tmp.message = _error_message;
|
331 + | }
|
332 + | tmp
|
333 + | })
|
334 + | }
|
335 + | "ModelTimeoutException" => {
|
336 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ModelTimeoutException({
|
337 + | let mut tmp = match protocol
|
338 + | .deserialize_response(response, crate::types::error::ModelTimeoutException::SCHEMA, _cfg)
|
339 + | .and_then(|mut deser| {
|
340 + | crate::types::error::ModelTimeoutException::deserialize_with_response(
|
341 + | &mut *deser,
|
342 + | response.headers(),
|
343 + | response.status().into(),
|
344 + | body,
|
345 + | )
|
346 + | }) {
|
347 + | ::std::result::Result::Ok(val) => val,
|
348 + | ::std::result::Result::Err(e) => {
|
349 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
350 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
351 + | ))
|
352 + | }
|
353 + | };
|
354 + | tmp.meta = generic;
|
355 + | if tmp.message.is_none() {
|
356 + | tmp.message = _error_message;
|
357 + | }
|
358 + | tmp
|
359 + | })
|
360 + | }
|
361 + | "ResourceNotFoundException" => {
|
362 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ResourceNotFoundException({
|
363 + | let mut tmp = match protocol
|
364 + | .deserialize_response(response, crate::types::error::ResourceNotFoundException::SCHEMA, _cfg)
|
365 + | .and_then(|mut deser| {
|
366 + | crate::types::error::ResourceNotFoundException::deserialize_with_response(
|
367 + | &mut *deser,
|
368 + | response.headers(),
|
369 + | response.status().into(),
|
370 + | body,
|
371 + | )
|
372 + | }) {
|
373 + | ::std::result::Result::Ok(val) => val,
|
374 + | ::std::result::Result::Err(e) => {
|
375 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
376 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
377 + | ))
|
378 + | }
|
379 + | };
|
380 + | tmp.meta = generic;
|
381 + | if tmp.message.is_none() {
|
382 + | tmp.message = _error_message;
|
383 + | }
|
384 + | tmp
|
385 + | })
|
386 + | }
|
387 + | "ServiceQuotaExceededException" => {
|
388 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ServiceQuotaExceededException({
|
389 + | let mut tmp = match protocol
|
390 + | .deserialize_response(response, crate::types::error::ServiceQuotaExceededException::SCHEMA, _cfg)
|
391 + | .and_then(|mut deser| {
|
392 + | crate::types::error::ServiceQuotaExceededException::deserialize_with_response(
|
393 + | &mut *deser,
|
394 + | response.headers(),
|
395 + | response.status().into(),
|
396 + | body,
|
397 + | )
|
398 + | }) {
|
399 + | ::std::result::Result::Ok(val) => val,
|
400 + | ::std::result::Result::Err(e) => {
|
401 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
402 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
403 + | ))
|
404 + | }
|
405 + | };
|
406 + | tmp.meta = generic;
|
407 + | if tmp.message.is_none() {
|
408 + | tmp.message = _error_message;
|
409 + | }
|
410 + | tmp
|
411 + | })
|
412 + | }
|
413 + | "ServiceUnavailableException" => {
|
414 + | crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ServiceUnavailableException({
|
415 + | let mut tmp = match protocol
|
416 + | .deserialize_response(response, crate::types::error::ServiceUnavailableException::SCHEMA, _cfg)
|
417 + | .and_then(|mut deser| {
|
418 + | crate::types::error::ServiceUnavailableException::deserialize_with_response(
|
419 + | &mut *deser,
|
420 + | response.headers(),
|
421 + | response.status().into(),
|
422 + | body,
|
423 + | )
|
424 + | }) {
|
425 + | ::std::result::Result::Ok(val) => val,
|
426 + | ::std::result::Result::Err(e) => {
|
427 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
428 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
429 + | ))
|
430 + | }
|
431 + | };
|
432 + | tmp.meta = generic;
|
433 + | if tmp.message.is_none() {
|
434 + | tmp.message = _error_message;
|
435 + | }
|
436 + | tmp
|
437 + | })
|
438 + | }
|
439 + | "ThrottlingException" => crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ThrottlingException({
|
440 + | let mut tmp = match protocol
|
441 + | .deserialize_response(response, crate::types::error::ThrottlingException::SCHEMA, _cfg)
|
442 + | .and_then(|mut deser| {
|
443 + | crate::types::error::ThrottlingException::deserialize_with_response(
|
444 + | &mut *deser,
|
445 + | response.headers(),
|
446 + | response.status().into(),
|
447 + | body,
|
448 + | )
|
449 + | }) {
|
450 + | ::std::result::Result::Ok(val) => val,
|
451 + | ::std::result::Result::Err(e) => {
|
452 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
453 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
454 + | ))
|
455 + | }
|
456 + | };
|
457 + | tmp.meta = generic;
|
458 + | if tmp.message.is_none() {
|
459 + | tmp.message = _error_message;
|
460 + | }
|
461 + | tmp
|
462 + | }),
|
463 + | "ValidationException" => crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::ValidationException({
|
464 + | let mut tmp = match protocol
|
465 + | .deserialize_response(response, crate::types::error::ValidationException::SCHEMA, _cfg)
|
466 + | .and_then(|mut deser| {
|
467 + | crate::types::error::ValidationException::deserialize_with_response(
|
468 + | &mut *deser,
|
469 + | response.headers(),
|
470 + | response.status().into(),
|
471 + | body,
|
472 + | )
|
473 + | }) {
|
474 + | ::std::result::Result::Ok(val) => val,
|
475 + | ::std::result::Result::Err(e) => {
|
476 + | return ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::other(
|
477 + | ::aws_smithy_runtime_api::box_error::BoxError::from(e),
|
478 + | ))
|
479 + | }
|
480 + | };
|
481 + | tmp.meta = generic;
|
482 + | if tmp.message.is_none() {
|
483 + | tmp.message = _error_message;
|
484 + | }
|
485 + | tmp
|
486 + | }),
|
487 + | _ => crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamError::generic(generic),
|
488 + | };
|
489 + | ::std::result::Result::Err(::aws_smithy_runtime_api::client::orchestrator::OrchestratorError::operation(
|
490 + | ::aws_smithy_runtime_api::client::interceptors::context::Error::erase(err),
|
491 + | ))
|
184 492 | }
|
185 493 | }
|
186 494 | #[derive(Debug)]
|
187 495 | struct InvokeModelWithResponseStreamRequestSerializer;
|
188 496 | impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for InvokeModelWithResponseStreamRequestSerializer {
|
189 497 | #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
|
190 498 | fn serialize_input(
|
191 499 | &self,
|
192 500 | input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
|
193 501 | _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
|
194 502 | ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
|
195 503 | let input = input
|
196 504 | .downcast::<crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamInput>()
|
197 505 | .expect("correct type");
|
198 - | let _header_serialization_settings = _cfg
|
199 - | .load::<crate::serialization_settings::HeaderSerializationSettings>()
|
200 - | .cloned()
|
201 - | .unwrap_or_default();
|
202 - | let mut request_builder = {
|
203 - | #[allow(clippy::uninlined_format_args)]
|
204 - | fn uri_base(
|
205 - | _input: &crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamInput,
|
206 - | output: &mut ::std::string::String,
|
207 - | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
|
208 - | use ::std::fmt::Write as _;
|
209 - | let input_1 = &_input.model_id;
|
210 - | let input_1 = input_1
|
211 - | .as_ref()
|
212 - | .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("model_id", "cannot be empty or unset"))?;
|
213 - | let model_id = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Default);
|
214 - | if model_id.is_empty() {
|
215 - | return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
|
216 - | "model_id",
|
217 - | "cannot be empty or unset",
|
218 - | ));
|
506 + | let protocol = _cfg
|
507 + | .load::<::aws_smithy_schema::protocol::SharedClientProtocol>()
|
508 + | .expect("a SharedClientProtocol is required");
|
509 + | if protocol.supports_http_bindings() {
|
510 + | let mut input = input;
|
511 + | let payload = input.body.take();
|
512 + | let mut request = protocol
|
513 + | .serialize_body(&input, InvokeModelWithResponseStream::INPUT_SCHEMA, "", _cfg)
|
514 + | .map_err(::aws_smithy_runtime_api::box_error::BoxError::from)?;
|
515 + | if let ::std::option::Option::Some(payload) = payload {
|
516 + | *request.body_mut() = ::aws_smithy_types::body::SdkBody::from(payload.into_inner());
|
517 + | request.headers_mut().insert("Content-Type", "application/octet-stream");
|
518 + | if let ::std::option::Option::Some(content_length) = request.body().content_length() {
|
519 + | request.headers_mut().insert("Content-Length", content_length.to_string());
|
219 520 | }
|
220 - | ::std::write!(output, "/model/{modelId}/invoke-with-response-stream", modelId = model_id).expect("formatting should succeed");
|
221 - | ::std::result::Result::Ok(())
|
222 521 | }
|
223 - | #[allow(clippy::unnecessary_wraps)]
|
224 - | fn update_http_builder(
|
225 - | input: &crate::operation::invoke_model_with_response_stream::InvokeModelWithResponseStreamInput,
|
226 - | builder: ::http_1x::request::Builder,
|
227 - | ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
|
228 - | let mut uri = ::std::string::String::new();
|
229 - | uri_base(input, &mut uri)?;
|
230 - | let builder =
|
231 - | crate::protocol_serde::shape_invoke_model_with_response_stream::ser_invoke_model_with_response_stream_headers(input, builder)?;
|
232 - | ::std::result::Result::Ok(builder.method("POST").uri(uri))
|
522 + | {
|
523 + | let mut uri = "/model/{modelId}/invoke-with-response-stream".to_string();
|
524 + | let mut query_params: Vec<(String, String)> = Vec::new();
|
525 + | if let Some(ref val) = input.content_type {
|
526 + | request.headers_mut().insert("Content-Type", val.to_string());
|
527 + | }
|
528 + | if let Some(ref val) = input.accept {
|
529 + | request.headers_mut().insert("X-Amzn-Bedrock-Accept", val.to_string());
|
530 + | }
|
531 + | if let Some(ref val) = input.model_id {
|
532 + | uri = uri.replace("{modelId}", &::aws_smithy_schema::http_protocol::percent_encode(&val.to_string()));
|
533 + | }
|
534 + | if let Some(ref val) = input.trace {
|
535 + | request.headers_mut().insert("X-Amzn-Bedrock-Trace", val.as_str().to_string());
|
536 + | }
|
537 + | if let Some(ref val) = input.guardrail_identifier {
|
538 + | request.headers_mut().insert("X-Amzn-Bedrock-GuardrailIdentifier", val.to_string());
|
539 + | }
|
540 + | if let Some(ref val) = input.guardrail_version {
|
541 + | request.headers_mut().insert("X-Amzn-Bedrock-GuardrailVersion", val.to_string());
|
542 + | }
|
543 + | if let Some(ref val) = input.performance_config_latency {
|
544 + | request
|
545 + | .headers_mut()
|
546 + | .insert("X-Amzn-Bedrock-PerformanceConfig-Latency", val.as_str().to_string());
|
547 + | }
|
548 + | if !query_params.is_empty() {
|
549 + | uri.push(if uri.contains('?') { '&' } else { '?' });
|
550 + | let pairs: Vec<String> = query_params
|
551 + | .iter()
|
552 + | .map(|(k, v)| {
|
553 + | format!(
|
554 + | "{}={}",
|
555 + | ::aws_smithy_schema::http_protocol::percent_encode(k),
|
556 + | ::aws_smithy_schema::http_protocol::percent_encode(v)
|
557 + | )
|
558 + | })
|
559 + | .collect();
|
560 + | uri.push_str(&pairs.join("&"));
|
561 + | }
|
562 + | request.set_uri(uri.as_str()).expect("valid URI");
|
233 563 | }
|
234 - | let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
|
235 - | builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/octet-stream");
|
236 - | builder
|
237 - | };
|
238 - | let body = ::aws_smithy_types::body::SdkBody::from(
|
239 - | crate::protocol_serde::shape_invoke_model_with_response_stream_input::ser_body_http_payload(input.body)?,
|
240 - | );
|
241 - | if let Some(content_length) = body.content_length() {
|
242 - | let content_length = content_length.to_string();
|
243 - | request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
|
564 + |
|
565 + | return ::std::result::Result::Ok(request);
|
566 + | } else {
|
567 + | let mut request = protocol
|
568 + | .serialize_request(&input, InvokeModelWithResponseStream::INPUT_SCHEMA, "", _cfg)
|
569 + | .map_err(::aws_smithy_runtime_api::box_error::BoxError::from)?;
|
570 + |
|
571 + | return ::std::result::Result::Ok(request);
|
244 572 | }
|
245 - | ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
|
246 573 | }
|
247 574 | }
|
248 575 | #[derive(Debug)]
|
249 576 | struct InvokeModelWithResponseStreamEndpointParamsInterceptor;
|
250 577 |
|
251 578 | impl ::aws_smithy_runtime_api::client::interceptors::Intercept for InvokeModelWithResponseStreamEndpointParamsInterceptor {
|
252 579 | fn name(&self) -> &'static str {
|
253 580 | "InvokeModelWithResponseStreamEndpointParamsInterceptor"
|
254 581 | }
|
255 582 |
|