Interface that extends EmbeddingsParams and defines additional parameters specific to the TencentHunyuanEmbeddingsParams class.

interface TencentHunyuanEmbeddingsParams {
    host?: string;
    tencentSecretId?: string;
    tencentSecretKey?: string;
}

Hierarchy (view full)

  • Toolkit
    • TencentHunyuanEmbeddingsParams

Properties

host?: string

Tencent Cloud API Host.

Default

"hunyuan.tencentcloudapi.com"
tencentSecretId?: string

SecretID to use when making requests, can be obtained from https://console.cloud.tencent.com/cam/capi. Defaults to the value of TENCENT_SECRET_ID environment variable.

tencentSecretKey?: string

Secret key to use when making requests, can be obtained from https://console.cloud.tencent.com/cam/capi. Defaults to the value of TENCENT_SECRET_KEY environment variable.

Generated using TypeDoc