127 lines
3.8 KiB
JavaScript
127 lines
3.8 KiB
JavaScript
/*
|
|
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
|
|
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
// Some original methods derived from https://github.com/ali-raheem/Aify/blob/4ece286095ea7a6cf89d696902e6b81b5d1c3a4b/plugin/html/API.js
|
|
|
|
|
|
export class Anthropic {
|
|
|
|
apiKey = '';
|
|
version = '';
|
|
model = '';
|
|
system_prompt = '';
|
|
temperature = '';
|
|
max_tokens = 4096;
|
|
stream = false;
|
|
|
|
constructor({
|
|
apiKey = '',
|
|
version = '',
|
|
model = '',
|
|
system_prompt = '',
|
|
temperature = '',
|
|
max_tokens = 4096,
|
|
stream = false,
|
|
} = {}) {
|
|
this.apiKey = apiKey;
|
|
this.version = version;
|
|
this.model = model;
|
|
this.system_prompt = system_prompt;
|
|
this.temperature = temperature;
|
|
this.max_tokens = max_tokens > 0 ? max_tokens : 4096;
|
|
this.stream = stream;
|
|
}
|
|
|
|
|
|
fetchModels = async () => {
|
|
try{
|
|
const response = await fetch("https://api.anthropic.com/v1/models", {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"x-api-key": this.apiKey,
|
|
"anthropic-version": this.version,
|
|
},
|
|
});
|
|
|
|
if (!response.ok) {
|
|
const errorDetail = await response.text();
|
|
let err_msg = "[ThunderAI] Claude API request failed: " + response.status + " " + response.statusText + ", Detail: " + errorDetail;
|
|
console.error(err_msg);
|
|
let output = {};
|
|
output.ok = false;
|
|
output.error = errorDetail;
|
|
return output;
|
|
}
|
|
|
|
let output = {};
|
|
output.ok = true;
|
|
let output_response = await response.json();
|
|
output.response = output_response.data;
|
|
|
|
return output;
|
|
}catch (error) {
|
|
console.error("[ThunderAI] Claude API request failed: " + error);
|
|
let output = {};
|
|
output.is_exception = true;
|
|
output.ok = false;
|
|
output.error = "Claude API request failed: " + error;
|
|
return output;
|
|
}
|
|
}
|
|
|
|
fetchResponse = async (messages) => {
|
|
|
|
// console.log(">>>>>>>>>>> Anthropic API request: " + JSON.stringify(messages));
|
|
|
|
try {
|
|
|
|
let claude_body = {
|
|
model: this.model,
|
|
max_tokens: parseInt(this.max_tokens),
|
|
system: this.system_prompt,
|
|
messages: messages,
|
|
stream: this.stream,
|
|
};
|
|
|
|
const tempFloat = parseFloat(this.temperature);
|
|
|
|
if(this.temperature != '' && !Number.isNaN(tempFloat)) claude_body.temperature = tempFloat;
|
|
|
|
const response = await fetch("https://api.anthropic.com/v1/messages", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
"x-api-key": this.apiKey,
|
|
"anthropic-version": this.version,
|
|
"anthropic-dangerous-direct-browser-access": "true",
|
|
},
|
|
body: JSON.stringify(claude_body),
|
|
});
|
|
return response;
|
|
}catch (error) {
|
|
console.error("[ThunderAI] Claude API request failed: " + error);
|
|
let output = {};
|
|
output.is_exception = true;
|
|
output.ok = false;
|
|
output.error = "Claude API request failed: " + error;
|
|
return output;
|
|
}
|
|
}
|
|
|
|
}
|