pull/335/head
Travis Fischer 2023-02-13 01:43:47 -06:00
rodzic cea8df65c1
commit 8af7e8311d
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -294,6 +294,7 @@ export class ChatGPTAPI {
if (response?.id) {
result.id = response.id
}
if (response?.choices?.length) {
result.text = response.choices[0].text.trim()
} else {
@ -337,6 +338,14 @@ export class ChatGPTAPI {
}
}
get apiKey(): string {
return this._apiKey
}
set apiKey(apiKey: string) {
this._apiKey = apiKey
}
protected async _buildPrompt(
message: string,
opts: types.SendMessageOptions