UNPKG

@langchain/community

Version:
18 lines (17 loc) 626 B
import { WebSocketStreamOptions } from "../../utils/iflytek_websocket_stream.js"; import { BaseChatIflytekXinghuo } from "./common.js"; //#region src/chat_models/iflytek_xinghuo/web.d.ts /** * @example * ```typescript * const model = new ChatIflytekXinghuo(); * const response = await model.invoke([new HumanMessage("Nice to meet you!")]); * console.log(response); * ``` */ declare class ChatIflytekXinghuo extends BaseChatIflytekXinghuo { openWebSocketStream<WebSocketStream>(options: WebSocketStreamOptions): Promise<WebSocketStream>; } //#endregion export { ChatIflytekXinghuo }; //# sourceMappingURL=web.d.ts.map