-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
chat_models.ts
173 lines (146 loc) Β· 4.74 KB
/
chat_models.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
import { CallbackManagerForLLMRun } from "@langchain/core/callbacks/manager";
import { AIMessage, BaseMessage } from "@langchain/core/messages";
import { ChatResult, ChatGeneration } from "@langchain/core/outputs";
import { BaseChatModel } from "@langchain/core/language_models/chat_models";
import { getEnvironmentVariable } from "@langchain/core/utils/env";
import { YandexGPTInputs } from "./llms.js";
const apiUrl =
"https://llm.api.cloud.yandex.net/foundationModels/v1/completion";
interface ParsedMessage {
role: string;
text: string;
}
function _parseChatHistory(history: BaseMessage[]): ParsedMessage[] {
const chatHistory: ParsedMessage[] = [];
for (const message of history) {
if (typeof message.content !== "string") {
throw new Error(
"ChatYandexGPT does not support non-string message content."
);
}
if ("content" in message) {
if (message._getType() === "human") {
chatHistory.push({ role: "user", text: message.content });
} else if (message._getType() === "ai") {
chatHistory.push({ role: "assistant", text: message.content });
} else if (message._getType() === "system") {
chatHistory.push({ role: "system", text: message.content });
}
}
}
return chatHistory;
}
/**
* @example
* ```typescript
* const chat = new ChatYandexGPT({});
* // The assistant is set to translate English to French.
* const res = await chat.invoke([
* new SystemMessage(
* "You are a helpful assistant that translates English to French."
* ),
* new HumanMessage("I love programming."),
* ]);
* ```
*/
export class ChatYandexGPT extends BaseChatModel {
apiKey?: string;
iamToken?: string;
temperature = 0.6;
maxTokens = 1700;
model = "yandexgpt-lite";
modelVersion = "latest";
modelURI?: string;
folderID?: string;
constructor(fields?: YandexGPTInputs) {
super(fields ?? {});
const apiKey = fields?.apiKey ?? getEnvironmentVariable("YC_API_KEY");
const iamToken = fields?.iamToken ?? getEnvironmentVariable("YC_IAM_TOKEN");
const folderID = fields?.folderID ?? getEnvironmentVariable("YC_FOLDER_ID");
if (apiKey === undefined && iamToken === undefined) {
throw new Error(
"Please set the YC_API_KEY or YC_IAM_TOKEN environment variable or pass it to the constructor as the apiKey or iamToken field."
);
}
this.modelURI = fields?.modelURI;
this.apiKey = apiKey;
this.iamToken = iamToken;
this.folderID = folderID;
this.maxTokens = fields?.maxTokens ?? this.maxTokens;
this.temperature = fields?.temperature ?? this.temperature;
this.model = fields?.model ?? this.model;
this.modelVersion = fields?.modelVersion ?? this.modelVersion;
if (this.modelURI === undefined && folderID === undefined) {
throw new Error(
"Please set the YC_FOLDER_ID environment variable or pass Yandex GPT model URI to the constructor as the modelURI field."
);
}
if (!this.modelURI) {
this.modelURI = `gpt://${this.folderID}/${this.model}/${this.modelVersion}`;
}
}
_llmType() {
return "yandexgpt";
}
_combineLLMOutput?() {
return {};
}
get lc_secrets(): { [key: string]: string } | undefined {
return {
apiKey: "YC_API_KEY",
iamToken: "YC_IAM_TOKEN",
folderID: "YC_FOLDER_ID",
};
}
/** @ignore */
async _generate(
messages: BaseMessage[],
options: this["ParsedCallOptions"],
_runManager?: CallbackManagerForLLMRun | undefined
): Promise<ChatResult> {
const messageHistory = _parseChatHistory(messages);
const headers = {
"Content-Type": "application/json",
Authorization: "",
"x-folder-id": "",
};
if (this.apiKey !== undefined) {
headers.Authorization = `Api-Key ${this.apiKey}`;
if (this.folderID !== undefined) {
headers["x-folder-id"] = this.folderID;
}
} else {
headers.Authorization = `Bearer ${this.iamToken}`;
}
const bodyData = {
modelUri: this.modelURI,
completionOptions: {
temperature: this.temperature,
maxTokens: this.maxTokens,
},
messages: messageHistory,
};
const response = await fetch(apiUrl, {
method: "POST",
headers,
body: JSON.stringify(bodyData),
signal: options?.signal,
});
if (!response.ok) {
throw new Error(
`Failed to fetch ${apiUrl} from YandexGPT: ${response.status}`
);
}
const responseData = await response.json();
const { result } = responseData;
const { text } = result.alternatives[0].message;
const { totalTokens } = result.usage;
const generations: ChatGeneration[] = [
{ text, message: new AIMessage(text) },
];
return {
generations,
llmOutput: { totalTokens },
};
}
}