LlmUnify is a library that abstracts connections to major LLM model providers, simplifying their invocation and interoperability.
Project description
LlmUnify
LlmUnify is a Python library designed to simplify and standardize interactions with multiple Large Language Model (LLM) providers. By offering a unified interface, it enables seamless integration and allows you to switch between providers or models without modifying your code. The library abstracts the complexity of invoking LLMs, supports streaming responses, and can be easily configured via environment variables or method arguments.
Supported Providers
- AWS Bedrock (via
boto3) - Azure AI Foundry (via
azure-ai-inference) - Google Vertex Ai (via
vertexai) - Ollama (via direct API calls)
- IBM WatsonX (via
ibm-watsonx-ai)
Future versions will include support for additional providers.
Installation
Install the core library from PyPI
To install the library directly from PyPI, run:
pip install llmUnify
Install with dependencies for a specific provider
To install the library with AWS-specific dependencies, use:
pip install 'llmUnify[aws]'
Install with all provider-specific dependencies
To install the library with all available provider-specific dependencies, use:
pip install 'llmUnify[all]'
Quickstart
Configuration and Authentication
LlmUnify retrieves provider-specific credentials and configuration from environment variables, with the option to override them using method arguments.
Example .env configuration:
OLLAMA_API_KEY=your_ollama_api_key
AWS_ACCESS_KEY_ID=your_aws_access_key_id
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key
Minimal Example
from llmUnify import LlmOptions, LlmUnify
from dotenv import load_dotenv
# Load configurations from .env file
load_dotenv()
# Define options for text generation
options = LlmOptions(
temperature=0.7,
prompt="Write a motivational poem:",
)
# Generate a response specifying provider and model
result = LlmUnify.generate(
model="<provider>:<model-name>", # Provider and model name separated by ":"
options=options,
)
print(result.generated_text)
Reusing Connectors
For repeated calls to the same provider, you can use a reusable connector:
from llmUnify import LlmOptions, LlmUnify
from dotenv import load_dotenv
# Load configurations from .env file
load_dotenv()
# Create a connector for a specific provider
connector = LlmUnify.get_connector(
provider="<provider>",
)
# Define options for text generation
options = LlmOptions(prompt="List three ways to stay productive:")
# Generate a response in streaming mode
result = connector.generate_stream(model_name="model_name", options=options)
print(result.generated_text)
Usage Metrics Logging
LlmUnify can log usage statistics such as token counts, elapsed time, and optional call identifiers.
Enable logging via environment variables:
LLM_UNIFY_ENABLE_USAGE_METRICS=true
LLM_UNIFY_USAGE_METRICS_OUTPUT_PATH=llm_unify_usage_metrics.csv # optional, default is ./llm_unify_usage_metrics.csv
Enable logging via code:
from llmUnify import configure_usage_metrics
UsageMetricsLogger.enable_usage_metrics(enabled=True, output_path="my_metrics.csv")
Pass a custom call name to identify calls in the logs:
result = LlmUnify.generate(
provider="<provider>:<model-name>",
options=options,
call_name="<call_name>"
)
After each call with logging enabled, a new row will be appended to the CSV file at the specified path.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llmunify-1.0.1.tar.gz.
File metadata
- Download URL: llmunify-1.0.1.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.10.18 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90b544c86afb5b9f4749ad9e5908af5f22a13615fefedc142ef6cda352cc0595
|
|
| MD5 |
9c112e226c7acc7ed844794733f24982
|
|
| BLAKE2b-256 |
dccdf260cf98ce55b11b9d7fbdfec8cd96d090f920da0d744d01a6e3027e88e0
|
File details
Details for the file llmunify-1.0.1-py3-none-any.whl.
File metadata
- Download URL: llmunify-1.0.1-py3-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.10.18 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4380b7bbad714eccbce79adc09daccb5580aa66494da971efbb1b0d26a400374
|
|
| MD5 |
34903ca4b64529e797a55c5ce8bf3ee6
|
|
| BLAKE2b-256 |
5bd682b231d30833fa48961e8ece03398b7de5cfa32cb71f27bf603a72e6b139
|