Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kagisearch/pyllms
Minimal Python library to connect to LLMs (OpenAI, Anthropic, Google, Groq, Reka, Together, AI21, Cohere, Aleph Alpha, HuggingfaceHub), with a built-in model performance benchmark.
https://github.com/kagisearch/pyllms
Last synced: 28 days ago
JSON representation
Minimal Python library to connect to LLMs (OpenAI, Anthropic, Google, Groq, Reka, Together, AI21, Cohere, Aleph Alpha, HuggingfaceHub), with a built-in model performance benchmark.
- Host: GitHub
- URL: https://github.com/kagisearch/pyllms
- Owner: kagisearch
- License: mit
- Created: 2023-04-10T01:26:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-30T06:04:19.000Z (3 months ago)
- Last Synced: 2024-10-06T10:06:38.513Z (about 1 month ago)
- Language: Python
- Homepage: https://kagi.com
- Size: 602 KB
- Stars: 707
- Watchers: 11
- Forks: 43
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ChatGPT-repositories - pyllms - Minimal Python library to connect to LLMs (OpenAI, Anthropic, AI21, Cohere, Aleph Alpha, HuggingfaceHub, Google PaLM2, with a built-in model performance benchmark. (NLP)
README
# PyLLMs
[![PyPI version](https://badge.fury.io/py/pyllms.svg)](https://badge.fury.io/py/pyllms)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/license/mit/)
[![](https://dcbadge.vercel.app/api/server/aDNg6E9szy?compact=true&style=flat)](https://discord.gg/aDNg6E9szy)
[![Twitter](https://img.shields.io/twitter/follow/KagiHQ?style=social)](https://twitter.com/KagiHQ)PyLLMs is a minimal Python library to connect to various Language Models (LLMs) with a built-in model performance benchmark.
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Quick Start](#quick-start)
- [Usage](#usage)
- [Basic Usage](#basic-usage)
- [Multi-model Usage](#multi-model-usage)
- [Async Support](#async-support)
- [Streaming Support](#streaming-support)
- [Chat History and System Message](#chat-history-and-system-message)
- [Other Methods](#other-methods)
- [Configuration](#configuration)
- [Model Benchmarks](#model-benchmarks)
- [Supported Models](#supported-models)
- [Advanced Usage](#advanced-usage)
- [Using OpenAI API on Azure](#using-openai-api-on-azure)
- [Using Google Vertex LLM models](#using-google-vertex-llm-models)
- [Using Local Ollama LLM models](#using-local-ollama-llm-models)
- [Contributing](#contributing)
- [License](#license)## Features
- Connect to top LLMs in a few lines of code
- Response meta includes tokens processed, cost, and latency standardized across models
- Multi-model support: Get completions from different models simultaneously
- LLM benchmark: Evaluate models on quality, speed, and cost
- Async and streaming support for compatible models## Installation
Install the package using pip:
```bash
pip install pyllms
```## Quick Start
```python
import llmsmodel = llms.init('gpt-4o')
result = model.complete("What is 5+5?")print(result.text)
```## Usage
### Basic Usage
```python
import llmsmodel = llms.init('gpt-4o')
result = model.complete(
"What is the capital of the country where Mozart was born?",
temperature=0.1,
max_tokens=200
)print(result.text)
print(result.meta)
```### Multi-model Usage
```python
models = llms.init(model=['gpt-3.5-turbo', 'claude-instant-v1'])
result = models.complete('What is the capital of the country where Mozart was born?')print(result.text)
print(result.meta)
```### Async Support
```python
result = await model.acomplete("What is the capital of the country where Mozart was born?")
```### Streaming Support
```python
model = llms.init('claude-v1')
result = model.complete_stream("Write an essay on the Civil War")
for chunk in result.stream:
if chunk is not None:
print(chunk, end='')
```### Chat History and System Message
```python
history = []
history.append({"role": "user", "content": user_input})
history.append({"role": "assistant", "content": result.text})model.complete(prompt=prompt, history=history)
# For OpenAI chat models
model.complete(prompt=prompt, system_message=system, history=history)
```### Other Methods
```python
count = model.count_tokens('The quick brown fox jumped over the lazy dog')
```## Configuration
PyLLMs will attempt to read API keys and the default model from environment variables. You can set them like this:
```bash
export OPENAI_API_KEY="your_api_key_here"
export ANTHROPIC_API_KEY="your_api_key_here"
export AI21_API_KEY="your_api_key_here"
export COHERE_API_KEY="your_api_key_here"
export ALEPHALPHA_API_KEY="your_api_key_here"
export HUGGINFACEHUB_API_KEY="your_api_key_here"
export GOOGLE_API_KEY="your_api_key_here"
export MISTRAL_API_KEY="your_api_key_here"
export REKA_API_KEY="your_api_key_here"
export TOGETHER_API_KEY="your_api_key_here"
export GROQ_API_KEY="your_api_key_here"
export DEEPSEEK_API_KEY="your_api_key_here"export LLMS_DEFAULT_MODEL="gpt-3.5-turbo"
```Alternatively, you can pass initialization values to the `init()` method:
```python
model = llms.init(openai_api_key='your_api_key_here', model='gpt-4')
```## Model Benchmarks
PyLLMs includes an automated benchmark system. The quality of models is evaluated using a powerful model (e.g., GPT-4) on a range of predefined questions, or you can supply your own.
```python
model = llms.init(model=['claude-3-haiku-20240307', 'gpt-4o-mini', 'claude-3-5-sonnet-20240620', 'gpt-4o', 'mistral-large-latest', 'open-mistral-nemo', 'gpt-4', 'gpt-3.5-turbo', 'deepseek-coder', 'deepseek-chat', 'llama-3.1-8b-instant', 'llama-3.1-70b-versatile'])gpt4 = llms.init('gpt-4o')
models.benchmark(evaluator=gpt4)
```Check [Kagi LLM Benchmarking Project](https://help.kagi.com/kagi/ai/llm-benchmark.html) for the latest benchmarks!
To evaluate models on your own prompts:
```python
models.benchmark(prompts=[("What is the capital of Finland?", "Helsinki")], evaluator=gpt4)
```## Supported Models
To get a full list of supported models:
```python
model = llms.init()
model.list()
model.list("gpt") # lists only models with 'gpt' in name/provider name
```
Currently supported models (may be outdated):| **Provider** | **Models** |
|---------------------------|---------------------------------------------------------------------------------------------------------|
| HuggingfaceHubProvider | hf_pythia, hf_falcon40b, hf_falcon7b, hf_mptinstruct, hf_mptchat, hf_llava, hf_dolly, hf_vicuna |
| GroqProvider | llama-3.1-8b-instant, llama-3.1-405b-reasoning, llama-3.1-70b-versatile |
| DeepSeekProvider | deepseek-chat, deepseek-coder |
| MistralProvider | mistral-tiny, open-mistral-7b, open-mistral-nemo, mistral-small, open-mixtral-8x7b, mistral-small-latest, mistral-medium-latest, mistral-large-latest |
| OpenAIProvider | gpt-4o-mini, gpt-3.5-turbo, gpt-3.5-turbo-1106, gpt-3.5-turbo-instruct, gpt-4o, gpt-4-1106-preview, gpt-4-turbo-preview, gpt-4-turbo |
| GoogleProvider | gemini-1.5-pro-preview-0514, gemini-1.5-flash-preview-0514, chat-bison, text-bison, text-bison-32k, code-bison, code-bison-32k, codechat-bison, codechat-bison-32k, gemini-pro |
| GoogleGenAIProvider | chat-bison-genai, text-bison-genai, gemini-1.5-pro-latest |
| AnthropicProvider | claude-3-haiku-20240307, claude-instant-v1.1, claude-instant-v1, claude-instant-1, claude-instant-1.2, claude-3-sonnet-20240229, claude-3-5-sonnet-20240620, claude-2.1, claude-v1, claude-v1-100k, claude-3-opus-20240229 |
| BedrockAnthropicProvider | anthropic.claude-3-haiku-20240307-v1:0, anthropic.claude-instant-v1, anthropic.claude-v1, anthropic.claude-v2, anthropic.claude-3-sonnet-20240229-v1:0 |
| TogetherProvider | meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo |
| RekaProvider | reka-edge, reka-flash, reka-core |
| AlephAlphaProvider | luminous-base, luminous-extended, luminous-supreme, luminous-supreme-control |
| AI21Provider | j2-grande-instruct, j2-jumbo-instruct, command, command-nightly |
| CohereProvider | command, command-nightly |## Advanced Usage
### Using OpenAI API on Azure
```python
import llms
AZURE_API_BASE = "{insert here}"
AZURE_API_KEY = "{insert here}"model = llms.init('gpt-4')
azure_args = {
"engine": "gpt-4", # Azure deployment_id
"api_base": AZURE_API_BASE,
"api_type": "azure",
"api_version": "2023-05-15",
"api_key": AZURE_API_KEY,
}azure_result = model.complete("What is 5+5?", **azure_args)
```### Using Google Vertex LLM models
1. Set up a GCP account and create a project
2. Enable Vertex AI APIs in your GCP project
3. Install gcloud CLI tool
4. Set up Application Default CredentialsThen:
```python
model = llms.init('chat-bison')
result = model.complete("Hello!")
```### Using Local Ollama LLM models
1. Ensure Ollama is running and you've pulled the desired model
2. Get the name of the LLM you want to use
3. Initialize PyLLMs:```python
model = llms.init("tinyllama:latest")
result = model.complete("Hello!")
```## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.