Class: Aws::Bedrock::Types::EvaluationInferenceConfigSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::EvaluationInferenceConfigSummary
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Identifies the models, Knowledge Bases, or other RAG sources evaluated in a model or Knowledge Base evaluation job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_config_summary ⇒ Types::EvaluationModelConfigSummary
A summary of the models used in an Amazon Bedrock model evaluation job.
-
#rag_config_summary ⇒ Types::EvaluationRagConfigSummary
A summary of the RAG resources used in an Amazon Bedrock Knowledge Base evaluation job.
Instance Attribute Details
#model_config_summary ⇒ Types::EvaluationModelConfigSummary
A summary of the models used in an Amazon Bedrock model evaluation job. These resources can be models in Amazon Bedrock or models outside of Amazon Bedrock that you use to generate your own inference response data.
1915 1916 1917 1918 1919 1920 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1915 class EvaluationInferenceConfigSummary < Struct.new( :model_config_summary, :rag_config_summary) SENSITIVE = [] include Aws::Structure end |
#rag_config_summary ⇒ Types::EvaluationRagConfigSummary
A summary of the RAG resources used in an Amazon Bedrock Knowledge Base evaluation job. These resources can be Knowledge Bases in Amazon Bedrock or RAG sources outside of Amazon Bedrock that you use to generate your own inference response data.
1915 1916 1917 1918 1919 1920 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1915 class EvaluationInferenceConfigSummary < Struct.new( :model_config_summary, :rag_config_summary) SENSITIVE = [] include Aws::Structure end |