@@ -444,11 +444,11 @@ export enum AmazonBedrockServiceType {
444
444
445
445
export class AmazonSageMakerServiceSettings {
446
446
/**
447
- * A valid AWS access key that has permissions to use Amazon SageMaker and access to models for invoke requests.
447
+ * A valid AWS access key that has permissions to use Amazon SageMaker and access to models for invoking requests.
448
448
*/
449
449
access_key : string
450
450
/**
451
- * The name of the SageMaker Endpoint .
451
+ * The name of the SageMaker endpoint .
452
452
* @ext_doc_id amazonsagemaker-invoke
453
453
*/
454
454
endpoint_name : string
@@ -458,19 +458,19 @@ export class AmazonSageMakerServiceSettings {
458
458
*/
459
459
api : AmazonSageMakerApi
460
460
/**
461
- * The region that your endpoint or ARN is deployed in.
461
+ * The region that your endpoint or Amazon Resource Name ( ARN) is deployed in.
462
462
* The list of available regions per model can be found in the Amazon SageMaker documentation.
463
463
* @ext_doc_id amazonsagemaker-invoke
464
464
*/
465
465
region : string
466
466
/**
467
467
* A valid AWS secret key that is paired with the `access_key`.
468
- * For informationg about creating and managing access and secret keys, refer to the AWS documentation.
468
+ * For information about creating and managing access and secret keys, refer to the AWS documentation.
469
469
* @ext_doc_id amazonsagemaker-secret-keys
470
470
*/
471
471
secret_key : string
472
472
/**
473
- * The model id when calling a multi-model endpoint.
473
+ * The model ID when calling a multi-model endpoint.
474
474
* @ext_doc_id amazonsagemaker-invoke
475
475
*/
476
476
target_model ?: string
@@ -492,8 +492,8 @@ export class AmazonSageMakerServiceSettings {
492
492
*/
493
493
batch_size ?: integer
494
494
/**
495
- * The number of dimensions returned by the text_embedding models. If this value is not provided, then
496
- * it is guessed by making invoking the Endpoint for the text_embedding task.
495
+ * The number of dimensions returned by the text embedding models. If this value is not provided, then
496
+ * it is guessed by making invoking the endpoint for the ` text_embedding` task.
497
497
*/
498
498
dimensions ?: integer
499
499
}
@@ -504,17 +504,17 @@ export enum AmazonSageMakerApi {
504
504
}
505
505
506
506
/**
507
- * Service Settings specific to the Elastic API for the Amazon SageMaker service.
507
+ * Service settings specific to the Elastic API for the Amazon SageMaker service.
508
508
*/
509
509
export class AmazonSageMakerElasticServiceSettings extends AmazonSageMakerServiceSettings {
510
510
/**
511
- * Similarity measure used when invoking the text_embedding task type.
511
+ * Similarity measure used when invoking the ` text_embedding` task type.
512
512
*/
513
513
similarity ?: AmazonSageMakerSimilarity
514
514
515
515
/**
516
- * The data type returned by the text_embedding model.
517
- * This value must be set when task_type is text_embedding and is used when parsing the response
516
+ * The data type returned by the text embedding model.
517
+ * This value must be set when ` task_type` is ` text_embedding` and is used when parsing the response
518
518
* back to Elasticsearch data structures.
519
519
*/
520
520
element_type : AmazonSageMakerElementType
@@ -545,7 +545,7 @@ export interface AmazonSageMakerTaskSettings {
545
545
*/
546
546
enable_explanations ?: string
547
547
/**
548
- * The capture data id when enabled in the Endpoint .
548
+ * The capture data ID when enabled in the endpoint .
549
549
* @ext_doc_id amazonsagemaker-invoke
550
550
*/
551
551
inference_id ?: string
0 commit comments