Skip to main content

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)
  • OpenAI (via openai)

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llmunify-1.0.2.tar.gz (18.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llmunify-1.0.2-py3-none-any.whl (32.2 kB view details)

Uploaded Python 3

File details

Details for the file llmunify-1.0.2.tar.gz.

File metadata

  • Download URL: llmunify-1.0.2.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.10.19 Linux/6.11.0-1018-azure

File hashes

Hashes for llmunify-1.0.2.tar.gz
Algorithm Hash digest
SHA256 f1a206fb56cea5b7e865e54c906eca126dfc47208472f734ee1343bc9e241da9
MD5 48e4c25c78f3e09b47187d1494350d12
BLAKE2b-256 fffde00b7b5e527ca337addec4df42bb54d78e695aea0f68b292ce71175152f5

See more details on using hashes here.

File details

Details for the file llmunify-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: llmunify-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.10.19 Linux/6.11.0-1018-azure

File hashes

Hashes for llmunify-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 802dbe431f5fa8631e0928cd072d34cfa3f34148bc28c7fdccff6f149ca168b3
MD5 2dfb055653d3273d13eb1e4609c4a279
BLAKE2b-256 792734a2570f0d91e3d0b9c859f775c66b42f89f7e43523622a056292ef62949

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page