Skip to main content

A unified library for interacting with various AI APIs through a standardized interface.

Project description

SwitchAI

SwitchAI is a lightweight and flexible library that provides a standardized interface for interacting with various AI APIs like OpenAI, Anthropic, Mistral, and more. With SwitchAI, you can easily switch between AI providers or use multiple APIs simultaneously, all with a simple and consistent interface.

Installation

You can install just the base switchai package, or install a provider's package along with it.

  • Base Package: This installs just the base switchai package without installing any provider's SDK.

    pip install switchai
    
  • OpenAI Provider: This installs switchai along with OpenAI's library.

    pip install switchai[openai]
    
  • All Providers: This installs switchai along with all provider-specific libraries.

    pip install switchai[all]
    

Getting Started

To use SwitchAI, you will need API keys for the AI providers you intend to interact with. You can set these keys either as environment variables or pass them as configuration to the SwitchAI client.

Option 1: In Code

from switchai import SwitchAI

client = SwitchAI(provider="openai", model_name="gpt-4", api_key="your_api_key")

Option 2: Environment Variables

Set the API key as an environment variable:

macOS/Linux:

export PROVIDER_API_KEY="your_api_key"

Windows:

set PROVIDER_API_KEY="your_api_key"

Make sure you follow the correct naming conventions for each provider's API key, as outlined in the documentation. This ensures that SwitchAI can automatically detect and use the appropriate key for the chosen provider.

Example Usage

Here are some examples of how you can use SwitchAI to interact with different AI models:

Chat

from switchai import SwitchAI

# Initialize the client with the desired AI model
client = SwitchAI(provider="openai", model_name="gpt-4o")

# Send a message and receive a response
response = client.chat(
    messages=[
        {"role": "user", "content": "Hello, how are you?"}
    ]
)

# Print the response
print(response)

Vision

from switchai import SwitchAI

# Initialize the client with the vision model
client = SwitchAI(provider="mistral", model_name="pixtral-large-latest")

# Send an image with a question and receive a response
response = client.chat(
    messages=[
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "What's in this image?"},
                {"type": "image", "image": "path/to/image/file.jpg"},
            ],
        }
    ]
)

# Print the response
print(response)

Text Embedding

from switchai import SwitchAI

# Initialize the client with the chosen embedding model
client = SwitchAI(provider="google", model_name="models/text-embedding-004")

# Generate embeddings for a list of text inputs
response = client.embed(
    inputs=[
        "I am feeling great today!",
        "I am feeling sad today."
    ]
)

# Print the response
print(response)

Speech to Text

from switchai import SwitchAI

# Initialize the client with the desired speech-to-text model
client = SwitchAI(provider="deepgram", model_name="nova-2")

# Transcribe an audio file
response = client.transcribe(
    audio_path="path/to/audio/file.wav"
)

# Print the response
print(response)

Image Generation

from switchai import SwitchAI

client = SwitchAI(provider="replicate", model_name="black-forest-labs/flux-schnell")
response = client.generate_image("A beautiful sunset over the mountains.")

image = response.images[0]
image.show()

SuperClients

SuperClients are high-level interfaces that extend the base SwitchAI client to provide additional functionalities.

Browser

Gives a chat model the ability to access websites.

from switchai import SwitchAI, Browser

client = SwitchAI(provider="openai", model_name="gpt-4o")
client = Browser(client)

response = client.chat(
    messages=[
        {
          "role": "user", 
          "content": "Can you summarize the content of this website: https://example.com?"
        },
    ]
)

print(response)

Classifier

Assigns a label to a text or image input.

from switchai import SwitchAI, Classifier

client = SwitchAI(provider="openai", model_name="gpt-4o-mini")
classifier = Classifier(client, classes=["negative", "positive"])

response = classifier.classify("I am feeling great today!")
print(response) # Output: "positive"

ImageRetriever

Retrieves images from a folder of images based on a query.

from switchai import SwitchAI, ImageRetriever

client = SwitchAI(provider="VoyageAI", model_name="voyage-multimodal-3")
image_retriever = ImageRetriever(client, images_folder_path="files/images")

results = image_retriever.retrieve_images("An orange cat in a green field.")
print(results)

Documentation

For full documentation, visit SwitchAI Documentation.

Contributing

Contributions are always welcome! If you'd like to help enhance SwitchAI, feel free to make a contribution.

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

switchai-0.3.1.tar.gz (23.8 kB view details)

Uploaded Source

Built Distribution

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

switchai-0.3.1-py3-none-any.whl (31.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: switchai-0.3.1.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.12

File hashes

Hashes for switchai-0.3.1.tar.gz
Algorithm Hash digest
SHA256 990c10549f786ea272a613ba099392097ed55e472966e6463858c65f364e2f3a
MD5 f30d8a674b75f4f42c46820ddaa94a87
BLAKE2b-256 e49eb37f00b3733ed02b4b4bcc693455e4b47d76106c2b0c3e782d53fdbf518f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: switchai-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 31.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.12

File hashes

Hashes for switchai-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1fdb0c99885e53458ee2b93e7234a92bf59419f74c1f2805a3ea1171a1be8589
MD5 5483bdf9ecc50348039cc9fe450c3570
BLAKE2b-256 78e50e3ea7bb7c50a0e6b5f581d8498af15324bbc1f6d24107ab294f508df102

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