Skip to main content

Python SDK for LenzyAI analytics platform

Project description

LenzyAI Python SDK

Official Python SDK for the LenzyAI analytics platform.

Python Version

Installation

pip install lenzyai

Quick Start

from lenzyai import LenzyAI

# Initialize the client
client = LenzyAI(api_key="your-api-key")

# Record messages
client.record_messages(
    project_id="proj_123",
    external_conversation_id="conv_456",
    messages=[
        {
            "role": "USER",
            "content": "Hello!",
            "external_id": "msg_1",  # optional
            "sent_at": "2025-11-27T10:30:00.000Z",  # optional
        },
        {"role": "ASSISTANT", "content": "Hi there! How can I help you?"},
    ],
    external_user_id="user_789",  # optional
)

Configuration

The SDK can be configured in three ways (in order of precedence):

1. Constructor Parameters

from lenzyai import LenzyAI

client = LenzyAI(
    api_key="your-api-key",
    enabled=True,  # Optional, defaults to True
)

2. Environment Variables

export LENZYAI_API_KEY="your-api-key"
export LENZYAI_ENABLED="true"  # Optional, set to "false" or "0" to disable
from lenzyai import LenzyAI

# Will use environment variables
client = LenzyAI()

3. Defaults

  • enabled: True

Disabling the SDK

You can disable the SDK in non-production environment without removing code:

# Method 1: Constructor
client = LenzyAI(api_key="your-api-key", enabled=False)

# Method 2: Environment variable
# export LENZYAI_ENABLED="false"
client = LenzyAI(api_key="your-api-key")

# All record_messages() calls will be no-ops
client.record_messages(...)  # Does nothing

Error Handling

The SDK uses a fail-safe design:

  • Errors during initialization raise exceptions
  • Errors during record_messages() are logged but never raise exceptions
  • All errors are logged with the prefix "LenzyAI Error:"
import logging

# Configure logging to see errors
logging.basicConfig(level=logging.ERROR)

client = LenzyAI(api_key="your-api-key")
client.record_messages(...)  # Logs errors, never crashes

Requirements

  • Python 3.8+
  • requests>=2.25.0
  • typing-extensions>=4.0.0

License

MIT License - see LICENSE file for details.

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

lenzyai-0.0.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distribution

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

lenzyai-0.0.2-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file lenzyai-0.0.2.tar.gz.

File metadata

  • Download URL: lenzyai-0.0.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for lenzyai-0.0.2.tar.gz
Algorithm Hash digest
SHA256 5596b33f352834b9d958d2907961c0ead2c0229babf558deeb6318cedfcf2cfd
MD5 543fcf323261d02c40f1129bcb9f00bd
BLAKE2b-256 51fdeb8ae355452231c7723aa6e9e1cd5fc39e3093a7e0f462c99e1b1a82f760

See more details on using hashes here.

File details

Details for the file lenzyai-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: lenzyai-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 6.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.2

File hashes

Hashes for lenzyai-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b11f75fc5a72e73394639beb3aa2f8e7bd309238c0cb9b8adf2cf7278381fe65
MD5 33bf654fc0b7c622238b29f8dc2b0bde
BLAKE2b-256 27784dadf1fa33181e66086c5ba618e8a6d114a57fa2199c6c486eae9d0dd729

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