@langchain/community
Version:
Third-party integrations for LangChain.js
47 lines (46 loc) • 1.32 kB
JavaScript
import { __exportAll } from "../../_virtual/_rolldown/runtime.js";
import { ChatTencentHunyuan as ChatTencentHunyuan$1 } from "./base.js";
import { sign } from "../../utils/tencent_hunyuan/web.js";
//#region src/chat_models/tencent_hunyuan/web.ts
var web_exports = /* @__PURE__ */ __exportAll({ ChatTencentHunyuan: () => ChatTencentHunyuan });
/**
* Wrapper around Tencent Hunyuan large language models that use the Chat endpoint.
*
* To use you should have the `TENCENT_SECRET_ID` and `TENCENT_SECRET_KEY`
* environment variable set.
*
* @augments BaseLLM
* @augments TencentHunyuanInput
* @example
* ```typescript
* const messages = [new HumanMessage("Hello")];
*
* const hunyuanLite = new ChatTencentHunyuan({
* model: "hunyuan-lite",
* tencentSecretId: "YOUR-SECRET-ID",
* tencentSecretKey: "YOUR-SECRET-KEY",
* });
*
* let res = await hunyuanLite.call(messages);
*
* const hunyuanPro = new ChatTencentHunyuan({
* model: "hunyuan-pro",
* temperature: 1,
* tencentSecretId: "YOUR-SECRET-ID",
* tencentSecretKey: "YOUR-SECRET-KEY",
* });
*
* res = await hunyuanPro.call(messages);
* ```
*/
var ChatTencentHunyuan = class extends ChatTencentHunyuan$1 {
constructor(fields) {
super({
...fields,
sign
});
}
};
//#endregion
export { ChatTencentHunyuan, web_exports };
//# sourceMappingURL=web.js.map