
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
JavaScript 版本的 LiteLLM,提供统一的接口来访问不同的大型语言模型 API。
npm install litellm-js
import liteLLM from 'litellm-js';
// 注册提供商
liteLLM.registerProvider('openai', {
apiKey: 'your-openai-api-key'
});
// 生成完成
const response = await liteLLM.completion({
model: 'gpt-3.5-turbo',
messages: [
{ role: 'system', content: '你是一名有用的助手。' },
{ role: 'user', content: '告诉我关于 JavaScript 的知识。' }
]
});
console.log(response);
// 流式输出
for await (const chunk of liteLLM.streamCompletion({
model: 'gpt-3.5-turbo',
messages: [
{ role: 'system', content: '你是一名有用的助手。' },
{ role: 'user', content: '告诉我关于 JavaScript 的知识。' }
]
})) {
console.log(chunk);
}
import liteLLM from 'litellm-js';
// 创建代理
liteLLM.createProxy({
name: 'my-proxy',
url: 'http://localhost:8000',
models: ['gpt-4', 'claude-2'], // 这些模型会通过代理路由
headers: {
'Authorization': 'Bearer your-proxy-key'
}
});
// 通过代理使用模型
const response = await liteLLM.completion({
model: 'gpt-4',
messages: [{ role: 'user', content: '你好!' }]
});
liteLLM.registerProvider('openai', {
apiKey: 'your-openai-api-key',
baseUrl: 'https://custom-openai-endpoint.com/v1'
});
liteLLM.registerProvider('anthropic', {
apiKey: 'your-anthropic-api-key',
defaultParams: {
temperature: 0.5,
max_tokens: 1000
}
});
欢迎贡献!请随时提交 Pull Request 或创建 Issue 讨论新功能或报告问题。
MIT
FAQs
Universal JavaScript client for LLM APIs
The npm package litellm-js receives a total of 7 weekly downloads. As such, litellm-js popularity was classified as not popular.
We found that litellm-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.