
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
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 2 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 0 open source maintainers 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.