9 lines
402 B
TypeScript
9 lines
402 B
TypeScript
|
import { TencentHunyuanEmbeddings as BaseTencentHunyuanEmbeddings, TencentHunyuanEmbeddingsParams } from "./base.js";
|
||
|
/**
|
||
|
* Class for generating embeddings using the Tencent Hunyuan API.
|
||
|
*/
|
||
|
export declare class TencentHunyuanEmbeddings extends BaseTencentHunyuanEmbeddings {
|
||
|
constructor(fields?: TencentHunyuanEmbeddingsParams);
|
||
|
}
|
||
|
export { type TencentHunyuanEmbeddingsParams } from "./base.js";
|