github.com/weaviate/weaviate@v1.24.6/modules/generative-aws/clients/aws_meta.go (about)

     1  //                           _       _
     2  // __      _____  __ ___   ___  __ _| |_ ___
     3  // \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
     4  //  \ V  V /  __/ (_| |\ V /| | (_| | ||  __/
     5  //   \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
     6  //
     7  //  Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
     8  //
     9  //  CONTACT: hello@weaviate.io
    10  //
    11  
    12  package clients
    13  
    14  func (v *aws) MetaInfo() (map[string]interface{}, error) {
    15  	return map[string]interface{}{
    16  		"name":              "Generative Search - AWS",
    17  		"documentationHref": "https://docs.aws.amazon.com/bedrock/latest/APIReference/welcome.html",
    18  	}, nil
    19  }