Skip to main content

AI observability platform for LLM applications - Python SDK

Project description

Palantyra Python SDK

AI observability platform for LLM applications with automatic tracing.

Installation

pip install palantyra

For full functionality including async support and LLM client integrations:

pip install palantyra[full]

Quick Start

import palantyra

# Initialize once (like Laminar)
palantyra.initialize(api_key="your-api-key")

# All LLM calls are now automatically traced!
from openai import OpenAI
client = OpenAI()

response = client.chat.completions.create(
    model="gpt-4",
    messages=[{"role": "user", "content": "Hello!"}]
)
# ↑ This is automatically traced with cost, latency, tokens, etc.

Features

  • Zero-code tracing: Just initialize and go
  • Automatic cost tracking: Real-time cost calculation
  • Performance monitoring: Latency, token usage, error rates
  • Session correlation: Group related LLM calls
  • Multi-provider support: OpenAI, Anthropic, and more
  • Async support: Works with httpx, aiohttp
  • Framework integration: FastAPI, Django, Flask examples

Usage Examples

Manual Tracing

@palantyra.trace("My AI Function")
def process_text(text):
    palantyra.add_attribute("input_length", len(text))

    # Your LLM calls here
    result = client.chat.completions.create(...)

    palantyra.add_attribute("output_length", len(result))
    return result

Session Tracking

with palantyra.trace("Document Analysis"):
    palantyra.add_attribute("session_id", "session_123")

    # Multiple related LLM calls
    summary = summarize_document(doc)
    questions = generate_questions(doc)
    answers = answer_questions(questions, doc)

Error Handling

try:
    response = client.chat.completions.create(...)
except Exception as e:
    palantyra.set_error(e)
    raise

Direct Proxy Usage

You can also use Palantyra as a proxy without the SDK:

import requests

response = requests.post(
    "http://localhost:8080/proxy/openai/v1/chat/completions",
    headers={"Authorization": "Bearer your-palantyra-api-key"},
    json={"model": "gpt-4", "messages": [...]}
)

Configuration

palantyra.initialize(
    api_key="your-api-key",
    base_url="http://localhost:8080",  # Palantyra server
    project_id="my-project",
    timeout=30.0
)

Web Framework Integration

FastAPI

from fastapi import FastAPI
import palantyra

app = FastAPI()

@app.on_event("startup")
async def startup():
    palantyra.initialize(api_key="your-key")

@app.post("/chat")
async def chat(message: str):
    with palantyra.trace("Chat API"):
        # Your LLM logic here
        return {"response": "..."}

Django

# settings.py
MIDDLEWARE = [
    'myapp.middleware.PalantyraMiddleware',
    # ... other middleware
]

# middleware.py
import palantyra

class PalantyraMiddleware:
    def __init__(self, get_response):
        self.get_response = get_response
        palantyra.initialize(api_key="your-key")

    def __call__(self, request):
        with palantyra.trace(f"{request.method} {request.path}"):
            return self.get_response(request)

Documentation

License

MIT License

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

Palantyra-1.0.4.tar.gz (14.7 kB view details)

Uploaded Source

Built Distribution

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

Palantyra-1.0.4-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

Details for the file Palantyra-1.0.4.tar.gz.

File metadata

  • Download URL: Palantyra-1.0.4.tar.gz
  • Upload date:
  • Size: 14.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.13

File hashes

Hashes for Palantyra-1.0.4.tar.gz
Algorithm Hash digest
SHA256 7ae372270591071c7eb4d1f6cabc70c5de22067b1dc4607e180dce3825de2012
MD5 c285cedaa229b1d27777e713bcd01cac
BLAKE2b-256 f8b1419e31014ee36d271c6d141f423dedbfabb39ae50acd66b6234ea2ad2aa6

See more details on using hashes here.

File details

Details for the file Palantyra-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: Palantyra-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.13

File hashes

Hashes for Palantyra-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8f21b03e0f38531443342a17098877b05ff2771d48b4ffec7a984ce7200562bb
MD5 c06339947318f1dc46bd10f759efae18
BLAKE2b-256 45f22668756539a9233f5811ebd14f1a03c187016ad9ddb4121bdee186bda633

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