0.1.2 • Published 7 months ago

unillm v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Benefits

  • ✨ Integrate with any provider and model using the OpenAI API
  • 💬 Consistent chatCompletion responses and logs across all models and providers
  • 💯 Type safety across all providers and models
  • 🔁 Seamlessly switch between LLMs without rewriting your codebase
  • ✅ If you write tests for your service, you only need to test it once
  • 🔜 (Coming Soon) Request caching and rate limiting
  • 🔜 (Coming Soon) Cost monitoring and alerting

Usage

✨ Check our interactive documentation ✨

💬 Chat Completions

With UniLLM, you can use chat completions even for providers/models that don't natively support it (e.g. Anthropic).

npm i unillm
import { UniLLM } from 'unillm';

const unillm = new UniLLM();

// OpenAI
const response = await unillm.createChatCompletion("openai/gpt-3.5-turbo", { messages: ... });
const response = await unillm.createChatCompletion("openai/gpt-4", { messages: ... });

// Anthropic
const response = await unillm.createChatCompletion("anthropic/claude-2", { messages: ... });
const response = await unillm.createChatCompletion("anthropic/claude-1-instant", { messages: ... });

// Azure OpenAI
const response = await unillm.createChatCompletion("azure/openai/<deployment-name>", { messages: ... });

// More coming soon!

Want to see more examples? Check out the interactive docs.

⚡️ Streaming

To enable streaming, simply provide stream: true in the options object. Here is an example:

const response = await unillm.createChatCompletion("openai/gpt-3.5-turbo", {
  messages: ...,
  stream: true
});

Want to see more examples? Check out the interactive docs.

Contributing

We welcome contributions from the community! Please feel free to submit pull requests or create issues for bugs or feature suggestions.

If you want to contribute but not sure how, join our Discord and we'll be happy to help you out!

Please check out CONTRIBUTING.md before contributing.

License

This repository's source code is available under the MIT.