|
|
|
@ -6,6 +6,7 @@ import { SocksProxyAgent } from 'socks-proxy-agent'
|
|
|
|
|
import { HttpsProxyAgent } from 'https-proxy-agent'
|
|
|
|
|
import fetch from 'node-fetch'
|
|
|
|
|
import { sendResponse } from '../utils'
|
|
|
|
|
import { isNotEmptyString } from '../utils/is'
|
|
|
|
|
import type { ApiModel, ChatContext, ChatGPTUnofficialProxyAPIOptions, ModelConfig } from '../types'
|
|
|
|
|
|
|
|
|
|
const ErrorCodeMessage: Record<string, string> = {
|
|
|
|
@ -27,42 +28,21 @@ if (!process.env.OPENAI_API_KEY && !process.env.OPENAI_ACCESS_TOKEN)
|
|
|
|
|
throw new Error('Missing OPENAI_API_KEY or OPENAI_ACCESS_TOKEN environment variable')
|
|
|
|
|
|
|
|
|
|
let api: ChatGPTAPI | ChatGPTUnofficialProxyAPI
|
|
|
|
|
function setupProxy(options) {
|
|
|
|
|
if (process.env.SOCKS_PROXY_HOST && process.env.SOCKS_PROXY_PORT) {
|
|
|
|
|
const agent = new SocksProxyAgent({
|
|
|
|
|
hostname: process.env.SOCKS_PROXY_HOST,
|
|
|
|
|
port: process.env.SOCKS_PROXY_PORT,
|
|
|
|
|
})
|
|
|
|
|
options.fetch = (url, options) => {
|
|
|
|
|
return fetch(url, { agent, ...options })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const httpsProxy = process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy
|
|
|
|
|
if (httpsProxy) {
|
|
|
|
|
const agent = new HttpsProxyAgent(httpsProxy)
|
|
|
|
|
options.fetch = (url, options) => {
|
|
|
|
|
return fetch(url, { agent, ...options })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
|
// More Info: https://github.com/transitive-bullshit/chatgpt-api
|
|
|
|
|
|
|
|
|
|
if (process.env.OPENAI_API_KEY) {
|
|
|
|
|
const OPENAI_API_MODEL = process.env.OPENAI_API_MODEL
|
|
|
|
|
const model = (typeof OPENAI_API_MODEL === 'string' && OPENAI_API_MODEL.length > 0)
|
|
|
|
|
? OPENAI_API_MODEL
|
|
|
|
|
: 'gpt-3.5-turbo'
|
|
|
|
|
const model = isNotEmptyString(OPENAI_API_MODEL) ? OPENAI_API_MODEL : 'gpt-3.5-turbo'
|
|
|
|
|
|
|
|
|
|
const options: ChatGPTAPIOptions = {
|
|
|
|
|
apiKey: process.env.OPENAI_API_KEY,
|
|
|
|
|
completionParams: { model },
|
|
|
|
|
debug: false,
|
|
|
|
|
debug: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (process.env.OPENAI_API_BASE_URL && process.env.OPENAI_API_BASE_URL.trim().length > 0)
|
|
|
|
|
if (isNotEmptyString(process.env.OPENAI_API_BASE_URL))
|
|
|
|
|
options.apiBaseUrl = process.env.OPENAI_API_BASE_URL
|
|
|
|
|
|
|
|
|
|
setupProxy(options)
|
|
|
|
@ -73,14 +53,14 @@ function setupProxy(options) {
|
|
|
|
|
else {
|
|
|
|
|
const options: ChatGPTUnofficialProxyAPIOptions = {
|
|
|
|
|
accessToken: process.env.OPENAI_ACCESS_TOKEN,
|
|
|
|
|
debug: false,
|
|
|
|
|
debug: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setupProxy(options)
|
|
|
|
|
|
|
|
|
|
if (process.env.API_REVERSE_PROXY)
|
|
|
|
|
if (isNotEmptyString(process.env.API_REVERSE_PROXY))
|
|
|
|
|
options.apiReverseProxyUrl = process.env.API_REVERSE_PROXY
|
|
|
|
|
|
|
|
|
|
setupProxy(options)
|
|
|
|
|
|
|
|
|
|
api = new ChatGPTUnofficialProxyAPI({ ...options })
|
|
|
|
|
apiModel = 'ChatGPTUnofficialProxyAPI'
|
|
|
|
|
}
|
|
|
|
@ -91,9 +71,6 @@ async function chatReplyProcess(
|
|
|
|
|
lastContext?: { conversationId?: string; parentMessageId?: string },
|
|
|
|
|
process?: (chat: ChatMessage) => void,
|
|
|
|
|
) {
|
|
|
|
|
// if (!message)
|
|
|
|
|
// return sendResponse({ type: 'Fail', message: 'Message is empty' })
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
let options: SendMessageOptions = { timeoutMs }
|
|
|
|
|
|
|
|
|
@ -123,20 +100,39 @@ async function chatReplyProcess(
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function chatConfig() {
|
|
|
|
|
const httpsProxy = process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy
|
|
|
|
|
const reverseProxy = process.env.API_REVERSE_PROXY ?? '-'
|
|
|
|
|
const socksProxy = (process.env.SOCKS_PROXY_HOST && process.env.SOCKS_PROXY_PORT) ? (`${process.env.SOCKS_PROXY_HOST}:${process.env.SOCKS_PROXY_PORT}`) : '-'
|
|
|
|
|
const httpsProxy = (process.env.HTTPS_PROXY || process.env.ALL_PROXY) ?? '-'
|
|
|
|
|
|
|
|
|
|
return sendResponse({
|
|
|
|
|
return sendResponse<ModelConfig>({
|
|
|
|
|
type: 'Success',
|
|
|
|
|
data: {
|
|
|
|
|
apiModel,
|
|
|
|
|
reverseProxy: process.env.API_REVERSE_PROXY,
|
|
|
|
|
timeoutMs,
|
|
|
|
|
socksProxy: (process.env.SOCKS_PROXY_HOST && process.env.SOCKS_PROXY_PORT) ? (`${process.env.SOCKS_PROXY_HOST}:${process.env.SOCKS_PROXY_PORT}`) : '-',
|
|
|
|
|
httpsProxy,
|
|
|
|
|
} as ModelConfig,
|
|
|
|
|
data: { apiModel, reverseProxy, timeoutMs, socksProxy, httpsProxy },
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setupProxy(options: ChatGPTAPIOptions | ChatGPTUnofficialProxyAPIOptions) {
|
|
|
|
|
if (process.env.SOCKS_PROXY_HOST && process.env.SOCKS_PROXY_PORT) {
|
|
|
|
|
const agent = new SocksProxyAgent({
|
|
|
|
|
hostname: process.env.SOCKS_PROXY_HOST,
|
|
|
|
|
port: process.env.SOCKS_PROXY_PORT,
|
|
|
|
|
})
|
|
|
|
|
options.fetch = (url, options) => {
|
|
|
|
|
return fetch(url, { agent, ...options })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (process.env.HTTPS_PROXY || process.env.ALL_PROXY) {
|
|
|
|
|
const httpsProxy = process.env.HTTPS_PROXY || process.env.ALL_PROXY
|
|
|
|
|
if (httpsProxy) {
|
|
|
|
|
const agent = new HttpsProxyAgent(httpsProxy)
|
|
|
|
|
options.fetch = (url, options) => {
|
|
|
|
|
return fetch(url, { agent, ...options })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { ChatContext, ChatMessage }
|
|
|
|
|
|
|
|
|
|
export { chatReplyProcess, chatConfig }
|
|
|
|
|