Skip to main content

EasyAI4All: Unified LLM Interface

Project description

easyai4all

Code style: black

Truly unified & comprehensive interface to multiple Generative AI providers.

Inspired from aisuite by Andrew Ng and litellm by BerriAI, easyai4all unifies the various LLM providers under a single interface. Derived from the OpenAI specification, easyai4all allows users to interact with all kinds of LLMs, with a standardized input/output format. easyai4all is a comprehensive wrapper, meaning that all functionalities supported by the individual LLM providers are available through easyai4all.

Currently supported providers, along with functionalities are -

LLM Provider Is Supported JSON Mode Tool Calling
OpenAI
Anthropic
Google (Gemini)

Unlike aisuite and litellm, we directly interact with the LLMs via REST API's over HTTPS, meaning no external client dependencies or abstractions. This allows easyai4all to be extremely lightweight (only one dependency - httpx) and doesn't require you to install any client libraries!

Installation

You can install easyai4all via PyPI

pip install easyai4all

Set up

To get started, you will need API Keys for the providers you intend to use. That's all!

The API Keys can be set as environment variables, or can be passed as config to the easyai4all Client constructor. We handle loading .env files so you don't need to do anything extra!

Here is a short example of using easyai4all to generate chat completion responses from gpt-4o and claude-3-5-sonnet.

Set the API keys.

export OPENAI_API_KEY="your-openai-api-key"
export ANTHROPIC_API_KEY="your-anthropic-api-key"

Use the python client.

from easyai4all.client import Client

client = Client()

models = ["openai/gpt-4o", "anthropic/claude-3-5-sonnet-20240620"]

messages = [
    {"role": "system", "content": "Respond in Pirate English."},
    {"role": "user", "content": "Tell me a joke."},
]

for model in models:
    response = clientcreate(
        model=model,
        messages=messages,
        temperature=0.75
    )

    print(response.choices[0].message.content)

Note that the model name in the create() call uses the format - <provider>/<model-name>. easyai4all will call the appropriate provider with the right parameters based on the provider value.

For a list of provider values, you can check the table above. We welcome providers adding support to this library by adding an implementation file in this directory. Please see section below for how to contribute.

For more examples, check out the examples directory where you will find several notebooks that you can run to experiment with the interface.

License

easyai4all is released under the MIT License. You are free to use, modify, and distribute the code for both commercial and non-commercial purposes.

Contributing

If you would like to contribute, please read our Contributing Guide!

Adding support for a provider

We have made easy for a provider or volunteer to add support for a new platform.

In the easyai4all/providers/options folder, add a provider file in the format {providername in lowercase}.py. Inherit the Provider class (from easyai4all.providers.base_provider import Provider).

Implement the _prepare_request and _prepare_response methods, where _prepare_request should return the request data in a format compatible with the provider's REST API and _process_response should return a ChatCompletionResponse object containing the provider's response properly formatted.

Example implementation below ->

def _prepare_request(
    self, model: str, messages: List[Dict[str, Any]], **kwargs
) -> Dict[str, Any]:
    return {"model": model, "messages": messages, **kwargs}

def _process_response(self, response: Dict[str, Any]) -> Dict[str, Any]:
    return ChatCompletionResponse.from_dict(response)

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

easyai4all-0.3.1.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

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

easyai4all-0.3.1-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

Details for the file easyai4all-0.3.1.tar.gz.

File metadata

  • Download URL: easyai4all-0.3.1.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for easyai4all-0.3.1.tar.gz
Algorithm Hash digest
SHA256 d078f4aef2643ff4cefa4aaa7275044760fb32a9a362db8ac037f7b429e5bfac
MD5 233b7ee861a195b9db3ec00287626eda
BLAKE2b-256 eee1d6c4e733902dbebb8106dcb9b4343c0317701f59642a52c587ec2054c2df

See more details on using hashes here.

Provenance

The following attestation bundles were made for easyai4all-0.3.1.tar.gz:

Publisher: publish.yml on BRama10/easyai4all

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file easyai4all-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: easyai4all-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 20.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for easyai4all-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 720cab27c285db679d20cd7258aff225cf4274911452268848731ab669ad2fab
MD5 cabf1e6298b83408174934bbbd7523c3
BLAKE2b-256 edd0ea585bcc1e6b87d5ccfe938cf45e84c640ca6c3c77d3f3fa1ea877ab96ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for easyai4all-0.3.1-py3-none-any.whl:

Publisher: publish.yml on BRama10/easyai4all

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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