Skip to main content

A python client for interacting with AltrumAI APIs.

Project description

AltrumAI Python API library

Project Logo

PyPI Version LinkedIn Contact

The AltrumAI Python library provides convenient access to the AltrumAI REST API from any Python 3.7+ application. The library includes type definitions for all request params and response fields, and offers synchronous and asynchronous client powered by requests.

Documentation

The REST API direct access and its documentation is still being worked upon.

Installation

[!IMPORTANT] The Altrum AI Python SDK is not public and is only available for internal aligne use or our customers (On request) at the moment.

pip install altrumai

Usage

from altrumai import AltrumAI

# Initialise AltrumAI client
client = AltrumAI(
    workspace="WORKSPACE_ID",
    base_url="DEPLOYMENT_URL",
    api_key="ALIGNEAI_API_KEY"
    )
# Generate chat completion using AltrumAI
response = client.models()

Async Usage

import asyncio
from altrumai import AsyncAltrumAI

async def main():
    # Initialise AltrumAI client
    client = AsyncAltrumAI(
        workspace="WORKSPACE_ID",
        base_url="DEPLOYMENT_URL",
        api_key="ALIGNEAI_API_KEY"
    )
    
    # Generate chat completion using AltrumAI
    response = await client.models()
    print(response)

# Run the async function
asyncio.run(main())

Models

List and describe the various models available in the API.

above usage code will give the list of all the available models

Paramenters : none

Deployments

List and describe the various models available in your workspace.

response = client.deployments()

Paramenters : none

Privacy

Detect entities as per data privacy compliance laws.

response = client.privacy(
        input="The UK company Steeper (http://bebionic.com/) is producing cutting edge electronic hands for amputees which feature over a dozen grip patterns, wrist mobility, and speed control - all through the muscle pressure sensors located in the device’s casing.",
        compliance= ["GDPR","HIPAA"],
        custom=["Money", "File Name"]
)

Parameters :

  • input (str): The input text that needs to be checked for privacy compliance.
  • compliance (list): A list of standard compliance regulations to check against. Supported values include: Supported values : ["GDPR" "HIPAA"]
  • custom (list): A list of custom compliance rules to apply Supported values : ["Money" "Filename", "Account Number", "Password", "Marital Status", "Organization", "Dosage"]

Chat Completions

Given a list of messages comprising a conversation, the model will return a response.

response = client.chat_completion(
    model="mistral-7b-chat",
    messages=[{'role': 'user', 'content': "What are different types of emerging risks related to AI?"}],
    stream=False,
    timeout=60
)

Parameters :

  • model (str): The name of the model to be used for generating responses(can get the list from client.models).
  • messages (list): A list of message objects, each containing: role (str): The role of the message sender. Valid roles are: "user" "assistant" content (str): The content of the message.
  • stream (bool, optional): If set to True, the response will be streamed as it is generated. Defaults to False.

Moderations

Detect toxicity and bias for moderations.

response = client.moderations(
        input="The UK company Steeper (http://bebionic.com/) is producing cutting edge electronic hands for amputees which feature over a dozen grip patterns, wrist mobility, and speed control - all through the muscle pressure sensors located in the device’s casing.",
        guardrails= ["bias","toxicity"]
)

Parameters :

  • input (str): The input text that needs to be moderated.
  • guardrails (list): A list of guardrails to check the input text against. Supported values include: "bias" "toxicity"

Embeddings

Creates an embedding vector representing the input text.

response = client.create_embeddings(
    inputs=["The new coffee blend from BeanWorks is robust and flavorful"],
    model="nomic-embed-v1.5",
    dimensions=64,
    encoding_format="float",
)

Parameters :

  • inputs (list): A list of input texts for which embeddings need to be generated.
  • model (str): The name of the model to be used for generating embeddings(can get the list from client.models).
  • dimensions (int): The number of dimensions for the generated embeddings. Supported values : 64, 128, 256, 512, 768
  • encoding_format (str): The format of the embedding values. Supported value: "float".

Ping

Endpoint to verify your Workspace ID and API Key on AltrumAI

ping_response = client.ping()

Check Competitor

Check if the input mentions any competitors.

response = client.check_competitor(
    input="Apple just released a new iPhone.",
    competitors=["Apple", "HIPAA"]
)

Parameters:

  • input (str): The input text to check for competitors.
  • competitors (list): A list of competitors to check against.

Check Sensitive Topics

Check if the input contains sensitive topics.

response = client.sensitive_topic(
    input="one day I will see the world, and go dancing in the rain, but people might get angry seeing me dancing, since I can get my ribs broken",
    sensitive_topics=[
        "travel", "cooking", "dancing", "exploration", "holiday or anniversary of the trauma or loss",
        "certain sounds, sights, smells, or tastes related to the trauma", "loud voices or yelling",
        "loud noises", "arguments", "being ridiculed or judged", "being alone", "getting rejected",
        "being ignored", "breakup of a relationship", "violence in the news", "sexual harassment or unwanted touching",
        "physical illness or injury"
    ],
    threshold=0.9
)

Parameters:

  • input (str): The input text to check for competitors.
  • sensitive_topics (list): A list of sensitive topics.
  • threshold (float): The threshold for sensitive topic matching.

Check Drugs

Check if the input mentions any specified drugs.

response = client.drugs_check(
    input="Just take 100mg ibuprofen per day",
    drugs=[
        "Ibuprofen", "Ibuprofen Lysine", "Ibutilide Fumarate", "Ic-Green", "Icodextrin",
        "Idamycin", "Idamycin PFS", "Idarubicin", "Ifex", "Ifosfamide", "Ilaris"
    ]
)

Parameters:

  • input (str): The input text to check.
  • drugs (list): A list of drugs to check against.

Restrict to Topic

Check if the input is valid topic or invalid topic.

    response = client.restrict_to_topic(
        input="one day I will see the world",
        valid_topics=["travel", "cooking", "dancing"],
        invalid_topics=["exploration"],
        threshold=0.5
    )

Parameters:

  • input (str): The input text to check.
  • valid_topics (list): A list of valid topics to check against.
  • invalid_topics (list): A list of invalid topics to check against.
  • threshold (float): The threshold for Restrict to topic match.

Detect Secrets

Detect secrets in the input text.

response = client.detect_secrets(
    input="My password is hunter2"
)

Parameters:

  • input (str): The input text to check for secrets.

Check Profanity

Check if the input contains profanity.

response = client.check_profanity(
    input="Hi! I am back again! Last warning! Stop undoing my edits or die"
)

Parameters:

  • input (str): The input text to check for profanity.

Gibberish Text

Detect gibberish text in the input.

response = client.gibberish_text(
    input="this isb alsdjuhjbcas",
    method="full"
)

Parameters:

  • input (str): The input text to check for gibberish.
  • method (str): The method to use for gibberish detection. Supported values : ['full', 'sentence']

Financial Tone

Evaluate the financial tone of the input text.

response = client.financial_tone(
    input="This year's growth is a bit on the downside, since we invested a lot in infrastructure. Although our competitors are doing much better than us."
)

Parameters:

  • input (str): The input text to evaluate the financial tone.

NSFW Text

Detect NSFW (Not Safe For Work) content in the input text.

response = client.nsfw_text(
    input="This year's growth is a bit on the downside, since we invested a lot in infrastructure. Although our competitors are doing much better than us.",
    method="full"
)

Parameters:

  • input (str): The input text to check for NSFW content.
  • method (str): The method to use for NSFW detection. Supported values : ['full', 'sentence']

Unusual Prompt

Detect unusual prompts in the input text.

response = client.unusual_prompt(
    input="Hi! I am back again! Last warning, I will kill you! Stop undoing my edits or die!"
)

Parameters:

  • input (str): The input text to check for unusual prompts.

Evaluate Response

Evaluate the response to a given question.

response = client.evaluate_response(
    question="What is Polymorphism in Python?",
    answer="The word polymorphism means having many forms. In programming, polymorphism means the same function name (but different signatures) being used for different types. The key difference is the data types and number of arguments used in function."
)

Parameters:

  • question (str): The question to evaluate.
  • answer (str): The answer to evaluate.

Evaluate Politeness

Evaluate the politeness of the input text.

response = client.evaluate_politeness(
    input="shut up and get that bread on the table"
)

Parameters:

  • input (str): The input text to evaluate for politeness.

QA Relevance LLM

Evaluate the response to a given question using another llm.

response = client.evaluate_response(
    question="What is Polymorphism in Python?",
    answer="The word polymorphism means having many forms. In programming, polymorphism means the same function name (but different signatures) being used for different types. The key difference is the data types and number of arguments used in function."
)

Parameters:

  • question (str): The question to evaluate.
  • answer (str): The answer to evaluate.

LLM Critic

Critique the input text based on specified metrics.

response = client.llm_critic(
    input="On the aforementioned date, my travel plans were severely disrupted due to delays with Swiss flight LX1017 in Dusseldorf. We were not allowed to board our scheduled flight at 9:40 AM, resulting in an extended wait and significant inconvenience. As a result, three out of four adults in our party lost a full day's salary due to missed work, an entirely preventable outcome. Additionally, our luggage, including a stroller for our children, was left outside in the rain, causing damage to our belongings. This level of negligence is unacceptable and has led to further undue stress and expense.Furthermore, the compensation offered for our expenses—833.73 Euros—falls significantly short of the 1150 Euros submitted, which covered unavoidable costs such as hotel accommodation, meals, and airport transfers. The lack of transparency and fairness in this reimbursement process is disappointing and needs urgent review.",
    metrics={
        "informative": {
            "description": "An informative summary captures the main points of the input and is free of irrelevant details.",
            "threshold": 75
        },
        "coherent": {
            "description": "A coherent summary is logically organized and easy to follow.",
            "threshold": 50
        },
        "concise": {
            "description": "A concise summary is free of unnecessary repetition and wordiness.",
            "threshold": 50
        },
        "engaging": {
            "description": "",
            "threshold": 50
        }
    },
    max_score=100
)

Parameters:

  • input (str): The input text to critique.
  • metrics (dict): The metrics to use for critiquing the input.
  • max_score (int): The maximum score for the critique.

Text to Speech

Convert input text to speech.

response = client.text_to_speech(
    input="On the aforementioned date, my travel plans were severely disrupted due to delays with Swiss flight LX1017 in Dusseldorf. We were not allowed to board our scheduled flight at 9:40 AM, resulting in an extended wait and significant inconvenience."
)

Parameters:

  • input (str): The input text to convert to speech.

Speech to Text

Convert speech to text.

response = client.speech_to_text(
    input="https://cdn.baseten.co/docs/production/Gettysburg.mp3"
)

Parameters:

  • input (str): The URL of the audio file to convert to text.

Timeouts

Currently by default 60 sec timeout is set for post methods, but timeout can be passed as a parameter while calling any method.

response = client.deployments(timeout=60)

Module-level client

We recommend that you always instantiate a client (e.g., with client = AltrumAI()) in application code.

Handling errors

When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of altrumai.APIConnectionError will be raised.

When the API returns a non-success status code (that is, 4xx or 5xx response), a subclass of altrumai.APIStatusError is raised, containing status_code and response properties.

All errors inherit from altrumai.APIError.

Error codes are as followed:

Status Code Error Type
400 BadRequestError
401 AuthenticationError
403 PermissionDeniedError
404 NotFoundError
422 UnprocessableEntityError
429 RateLimitError
>=500 InternalServerError
N/A APIConnectionError

(Work In Progress)

Retries

Certain errors are automatically retried 2 times by default, with a short exponential backoff. Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict, 429 Rate Limit, and >=500 Internal errors are all retried by default.

You can use the max_retries option to configure or disable retry settings. (Work In Progress)

Versioning

This package generally follows SemVer conventions, though certain backwards-incompatible changes may be released as minor versions:

  1. Changes that only affect static types, without breaking runtime behavior.
  2. Changes to library internals which are technically public but not intended or documented for external use. (Please open a GitHub issue to let us know if you are relying on such internals).
  3. Changes that we do not expect to impact the vast majority of users in practice.

We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.

We are keen for your feedback; please open an issue with questions, bugs, or suggestions.

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

altrumai-1.1.0.tar.gz (19.6 kB view details)

Uploaded Source

File details

Details for the file altrumai-1.1.0.tar.gz.

File metadata

  • Download URL: altrumai-1.1.0.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.9.16

File hashes

Hashes for altrumai-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9cd97e7794ae7b464ed0995b5c98f5300a431d526cdbf6f0296ec59a41a68ae3
MD5 d2d24e4b62c4ad0119bcbee8d0110695
BLAKE2b-256 8a5c79dd9b2541fc95d78c6976c1760468af6c83e953138cbceccdb0cc11157c

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