aws-sdk-bedrockruntime 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-bedrockruntime/client.rb +20 -8
- data/lib/aws-sdk-bedrockruntime/client_api.rb +1 -0
- data/lib/aws-sdk-bedrockruntime/event_streams.rb +5 -0
- data/lib/aws-sdk-bedrockruntime/types.rb +1 -0
- data/lib/aws-sdk-bedrockruntime.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 666f16d542f0c5c2abefc35e69bfd1cd43ed72f24bcadbcf937e293501ea8c98
|
4
|
+
data.tar.gz: a226fd2b85bbf7b7f51d138f7fef44c5c558b2aaa933b4345b48ada663858352
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bda1b39c6a60cee585cb2bb30c966072ee6d20b0f0f1649d388b8abd3eeb47583c34ebe41ce2b8c6a86ad62756a0f0b3d2997eddbfaeff0ff8adca682be1f0b
|
7
|
+
data.tar.gz: 22cfca82fa323b952fd3800c35067730c5897e1d33901cb2e3279d7abfbe189f891f6dd829b7ff0b39258b051eaea67b610f1eaf2bf1be001746328b85ec29df
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.1.0 (2023-10-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add model timeout exception for InvokeModelWithResponseStream API and update validator for invoke model identifier.
|
8
|
+
|
4
9
|
1.0.0 (2023-09-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.1.0
|
@@ -403,14 +403,14 @@ module Aws::BedrockRuntime
|
|
403
403
|
# provided in the request body. You use InvokeModel to run inference for
|
404
404
|
# text models, image models, and embedding models.
|
405
405
|
#
|
406
|
-
# For more information
|
407
|
-
#
|
406
|
+
# For more information, see [Run inference][1] in the Bedrock User
|
407
|
+
# Guide.
|
408
408
|
#
|
409
409
|
# For example requests, see Examples (after the Errors section).
|
410
410
|
#
|
411
411
|
#
|
412
412
|
#
|
413
|
-
# [1]: https://
|
413
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/api-methods-run.html
|
414
414
|
#
|
415
415
|
# @option params [String] :accept
|
416
416
|
# The desired MIME type of the inference body in the response. The
|
@@ -463,15 +463,15 @@ module Aws::BedrockRuntime
|
|
463
463
|
# Invoke the specified Bedrock model to run inference using the input
|
464
464
|
# provided. Return the response in a stream.
|
465
465
|
#
|
466
|
-
# For more information
|
467
|
-
#
|
466
|
+
# For more information, see [Run inference][1] in the Bedrock User
|
467
|
+
# Guide.
|
468
468
|
#
|
469
469
|
# For an example request and response, see Examples (after the Errors
|
470
470
|
# section).
|
471
471
|
#
|
472
472
|
#
|
473
473
|
#
|
474
|
-
# [1]: https://
|
474
|
+
# [1]: https://docs.aws.amazon.com/bedrock/latest/userguide/api-methods-run.html
|
475
475
|
#
|
476
476
|
# @option params [String] :accept
|
477
477
|
# The desired MIME type of the inference body in the response. The
|
@@ -550,6 +550,9 @@ module Aws::BedrockRuntime
|
|
550
550
|
# handler.on_model_stream_error_exception_event do |event|
|
551
551
|
# event # => Aws::BedrockRuntime::Types::modelStreamErrorException
|
552
552
|
# end
|
553
|
+
# handler.on_model_timeout_exception_event do |event|
|
554
|
+
# event # => Aws::BedrockRuntime::Types::modelTimeoutException
|
555
|
+
# end
|
553
556
|
# handler.on_throttling_exception_event do |event|
|
554
557
|
# event # => Aws::BedrockRuntime::Types::throttlingException
|
555
558
|
# end
|
@@ -572,6 +575,9 @@ module Aws::BedrockRuntime
|
|
572
575
|
# stream.on_model_stream_error_exception_event do |event|
|
573
576
|
# event # => Aws::BedrockRuntime::Types::modelStreamErrorException
|
574
577
|
# end
|
578
|
+
# stream.on_model_timeout_exception_event do |event|
|
579
|
+
# event # => Aws::BedrockRuntime::Types::modelTimeoutException
|
580
|
+
# end
|
575
581
|
# stream.on_throttling_exception_event do |event|
|
576
582
|
# event # => Aws::BedrockRuntime::Types::throttlingException
|
577
583
|
# end
|
@@ -594,6 +600,9 @@ module Aws::BedrockRuntime
|
|
594
600
|
# handler.on_model_stream_error_exception_event do |event|
|
595
601
|
# event # => Aws::BedrockRuntime::Types::modelStreamErrorException
|
596
602
|
# end
|
603
|
+
# handler.on_model_timeout_exception_event do |event|
|
604
|
+
# event # => Aws::BedrockRuntime::Types::modelTimeoutException
|
605
|
+
# end
|
597
606
|
# handler.on_throttling_exception_event do |event|
|
598
607
|
# event # => Aws::BedrockRuntime::Types::throttlingException
|
599
608
|
# end
|
@@ -631,7 +640,7 @@ module Aws::BedrockRuntime
|
|
631
640
|
#
|
632
641
|
# All events are available at resp.body:
|
633
642
|
# resp.body #=> Enumerator
|
634
|
-
# resp.body.event_types #=> [:chunk, :internal_server_exception, :model_stream_error_exception, :throttling_exception, :validation_exception]
|
643
|
+
# resp.body.event_types #=> [:chunk, :internal_server_exception, :model_stream_error_exception, :model_timeout_exception, :throttling_exception, :validation_exception]
|
635
644
|
#
|
636
645
|
# For :chunk event available at #on_chunk_event callback and response eventstream enumerator:
|
637
646
|
# event.bytes #=> String
|
@@ -644,6 +653,9 @@ module Aws::BedrockRuntime
|
|
644
653
|
# event.original_message #=> String
|
645
654
|
# event.original_status_code #=> Integer
|
646
655
|
#
|
656
|
+
# For :model_timeout_exception event available at #on_model_timeout_exception_event callback and response eventstream enumerator:
|
657
|
+
# event.message #=> String
|
658
|
+
#
|
647
659
|
# For :throttling_exception event available at #on_throttling_exception_event callback and response eventstream enumerator:
|
648
660
|
# event.message #=> String
|
649
661
|
#
|
@@ -692,7 +704,7 @@ module Aws::BedrockRuntime
|
|
692
704
|
params: params,
|
693
705
|
config: config)
|
694
706
|
context[:gem_name] = 'aws-sdk-bedrockruntime'
|
695
|
-
context[:gem_version] = '1.
|
707
|
+
context[:gem_version] = '1.1.0'
|
696
708
|
Seahorse::Client::Request.new(handlers, context)
|
697
709
|
end
|
698
710
|
|
@@ -95,6 +95,7 @@ module Aws::BedrockRuntime
|
|
95
95
|
ResponseStream.add_member(:chunk, Shapes::ShapeRef.new(shape: PayloadPart, event: true, location_name: "chunk"))
|
96
96
|
ResponseStream.add_member(:internal_server_exception, Shapes::ShapeRef.new(shape: InternalServerException, location_name: "internalServerException"))
|
97
97
|
ResponseStream.add_member(:model_stream_error_exception, Shapes::ShapeRef.new(shape: ModelStreamErrorException, location_name: "modelStreamErrorException"))
|
98
|
+
ResponseStream.add_member(:model_timeout_exception, Shapes::ShapeRef.new(shape: ModelTimeoutException, location_name: "modelTimeoutException"))
|
98
99
|
ResponseStream.add_member(:throttling_exception, Shapes::ShapeRef.new(shape: ThrottlingException, location_name: "throttlingException"))
|
99
100
|
ResponseStream.add_member(:validation_exception, Shapes::ShapeRef.new(shape: ValidationException, location_name: "validationException"))
|
100
101
|
ResponseStream.struct_class = Types::ResponseStream
|
@@ -27,6 +27,10 @@ module Aws::BedrockRuntime
|
|
27
27
|
@event_emitter.on(:model_stream_error_exception, block) if block_given?
|
28
28
|
end
|
29
29
|
|
30
|
+
def on_model_timeout_exception_event(&block)
|
31
|
+
@event_emitter.on(:model_timeout_exception, block) if block_given?
|
32
|
+
end
|
33
|
+
|
30
34
|
def on_throttling_exception_event(&block)
|
31
35
|
@event_emitter.on(:throttling_exception, block) if block_given?
|
32
36
|
end
|
@@ -51,6 +55,7 @@ module Aws::BedrockRuntime
|
|
51
55
|
on_chunk_event(&block)
|
52
56
|
on_internal_server_exception_event(&block)
|
53
57
|
on_model_stream_error_exception_event(&block)
|
58
|
+
on_model_timeout_exception_event(&block)
|
54
59
|
on_throttling_exception_event(&block)
|
55
60
|
on_validation_exception_event(&block)
|
56
61
|
on_error_event(&block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-bedrockruntime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|