mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 08:12:00 +02:00
feat(OpenAIClient): Add HttpsProxyAgent to initializeLLM (#1119)
* feat(OpenAIClient): Add HttpsProxyAgent to initializeLLM * chore: fix linting error in ModelService
This commit is contained in:
parent
7b30ab3a41
commit
5c1e44eff7
2 changed files with 7 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
const { encoding_for_model: encodingForModel, get_encoding: getEncoding } = require('tiktoken');
|
||||
const { HttpsProxyAgent } = require('https-proxy-agent');
|
||||
const ChatGPTClient = require('./ChatGPTClient');
|
||||
const BaseClient = require('./BaseClient');
|
||||
const { getModelMaxTokens, genAzureChatCompletion } = require('../../utils');
|
||||
|
@ -461,6 +462,11 @@ If your reverse proxy is compatible to OpenAI specs in every other way, it may s
|
|||
};
|
||||
}
|
||||
|
||||
if (this.options.proxy) {
|
||||
configOptions.httpAgent = new HttpsProxyAgent(this.options.proxy);
|
||||
configOptions.httpsAgent = new HttpsProxyAgent(this.options.proxy);
|
||||
}
|
||||
|
||||
const { req, res, debug } = this.options;
|
||||
const runManager = new RunManager({ req, res, debug, abortController: this.abortController });
|
||||
this.runManager = runManager;
|
||||
|
|
|
@ -29,7 +29,7 @@ const fetchOpenAIModels = async (opts = { azure: false, plugins: false }, _model
|
|||
|
||||
if (OPENROUTER_API_KEY) {
|
||||
reverseProxyUrl = 'https://openrouter.ai/api/v1';
|
||||
apiKey = OPENROUTER_API_KEY
|
||||
apiKey = OPENROUTER_API_KEY;
|
||||
}
|
||||
|
||||
if (reverseProxyUrl) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue