Skip to main content

AIGuard SDK for monitoring and logging AI model invocations

Project description

AIGuard Python SDK

Python SDK for monitoring and logging AI model invocations with AIGuard.

Installation

pip install aiguard

Or install from source:

pip install -e /path/to/python-sdk

Usage

Initialize the client

from aiguard import AIGuard

guard = AIGuard(api_key="your-api-key")

Direct API calls

# Start an invocation
invocation = guard.start_invocation({
    "eventId": "unique-event-123",
    "event": "chat-completion",
    "userId": "user-456",
    "inputMessage": "Hello, how are you?",
    "model": "gpt-4",
    "convoId": "conversation-789",
    "properties": {"temperature": 0.7}
})

# ... make your AI call ...

# End the invocation
completed = guard.end_invocation({
    "eventId": "unique-event-123",
    "output": "I am doing well, thank you!"
})

Manual logging

guard.log({
    "model": "gpt-4",
    "input": [{"role": "user", "content": "Hello"}],
    "output": "Hi there!",
    "latency": 150,
    "tokens": {"prompt": 10, "completion": 5, "total": 15},
    "status": "success"
})

Wrap OpenAI client (automatic logging)

from openai import OpenAI
from aiguard import AIGuard

guard = AIGuard(api_key="your-api-key")
client = guard.wrap_openai(OpenAI())

# All chat completion calls are now automatically logged
response = client.chat.completions.create(
    model="gpt-4",
    messages=[{"role": "user", "content": "Hello!"}]
)

API Reference

AIGuard(api_key, base_url="http://localhost:5000/api")

Initialize the AIGuard client.

start_invocation(data) -> dict

Start tracking an invocation. Required fields: eventId, event, userId.

end_invocation(data) -> dict

End an invocation. Required field: eventId.

log(data) -> None

Fire-and-forget logging of a model call.

wrap_openai(client) -> client

Wrap an OpenAI client for automatic logging.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

aiguard_sdk_python-0.1.0-py3-none-any.whl (4.1 kB view details)

Uploaded Python 3

File details

Details for the file aiguard_sdk_python-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aiguard_sdk_python-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0c152ff4086acf27ab098c0e3c7818e8f6dd16fc85b5d4c829797cc607efa1df
MD5 4bbcbcc4ff9864208cad2aa1fc497e1d
BLAKE2b-256 f7bcd4f57ceabb2d6f9e18786bf731541c85a3f04c671d089d248b287baeda16

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