Skip to main content

Trustwise Python SDK for interacting with the Trustwise APIs

Project description

🦉 Trustwise Python SDK

PyPI version

Trustwise Python SDK provides convenient access to the Trustwise metrics for any Python (3.11, 3.12) application. The library includes type definitions for all request params and response fields, and offers both synchronous and asynchronous clients.

📦 Installation

pip install trustwise

📚 Documentation

For comprehensive documentation, including detailed API references, usage examples, and metric descriptions, visit our official SDK documentation.

🚀 Quick Start

Get started with Trustwise in just a few lines of code:

import os
from trustwise.sdk import TrustwiseSDK
from trustwise.sdk.config import TrustwiseConfig

# Initialize the SDK
config = TrustwiseConfig(api_key=os.getenv("TW_API_KEY"))
trustwise = TrustwiseSDK(config)

🛡️ Trustwise Metrics

# Example context
context = [{
    "node_text": "Paris is the capital of France.",
    "node_score": 0.95,
    "node_id": "doc:idx:1"
}]

# Evaluate faithfulness
result = trustwise.metrics.faithfulness.evaluate(
    query="What is the capital of France?",
    response="The capital of France is Paris.",
    context=context
)
print(f"Faithfulness score: {result.score}")

# Evaluate PII detection
pii_result = trustwise.metrics.pii.evaluate(
    text="My email is john@example.com and my phone is 123-456-7890",
    allowlist=["john@example.com"],  # (Optionally) Allow specific PII patterns
    blocklist=["123-456-7890"]       # Block specific PII patterns
)
print(f"PII detection result: {pii_result}")
# Evaluate cost for OpenAI model
cost_result = trustwise.metrics.cost.evaluate(
    model_name="gpt-3.5-turbo",
    model_type="LLM",
    model_provider="openai",
    number_of_queries=5,
    total_prompt_tokens=950,
    total_completion_tokens=50
)
print(f"Cost per run: ${cost_result.cost_estimate_per_run}")
print(f"Total project cost: ${cost_result.total_project_cost_estimate}")

# Evaluate carbon emissions
carbon_result = trustwise.metrics.carbon.evaluate(
    processor_name="AMD A10-9700",
    provider_name="aws",
    provider_region="us-east-1",
    instance_type="p4d.24xlarge",
    average_latency=100
)
print(f"Carbon emissions: {carbon_result.carbon_emitted} kg CO2e")

🚧 Guardrails

Create guardrails to automatically validate responses:

# Create a multi-metric guardrail
guardrail = trustwise.guardrails(
    thresholds={
        "faithfulness": 0.8,
        "answer_relevancy": 0.7,
        "clarity": 0.7
    },
    block_on_failure=True
)

# Evaluate with multiple metrics
evaluation = guardrail.evaluate(
    query="What is the capital of France?",
    response="The capital of France is Paris.",
    context=context
)

print("Guardrail Evaluation:", evaluation)
print("Guardrail Evaluation:", evaluation.to_json())

🔐 API Key Setup

Get your API Key by logging in to Trustwise Portal. Sign up to get access on the Trustwise Website

The SDK requires an API key to authenticate requests. You can provide the API key in several ways:

# Method 1: Using environment variable (recommended)
config = TrustwiseConfig()  # Automatically uses TW_API_KEY from environment
trustwise = TrustwiseSDK(config)

# Method 2: Direct initialization with API key
config_direct = TrustwiseConfig(api_key=os.environ["TW_API_KEY"])
trustwise_direct = TrustwiseSDK(config_direct)

# Method 3: Custom configuration with specific base URL
config_custom = TrustwiseConfig(
    api_key=os.environ["TW_API_KEY"],
    base_url="https://api.trustwise.ai"
)
trustwise_custom = TrustwiseSDK(config_custom)

⚡ Async Support

For async applications, simply use TrustwiseSDKAsync instead of TrustwiseSDK:

import os
import asyncio
from trustwise.sdk import TrustwiseSDKAsync
from trustwise.sdk.config import TrustwiseConfig

# Initialize with TrustwiseConfig
trustwise = TrustwiseSDKAsync(TrustwiseConfig(api_key=os.getenv("TW_API_KEY")))

async def main():
    # Example: Evaluate clarity asynchronously
    result = await trustwise.metrics.clarity.evaluate(
        query="What is the capital of France?",
        response="The capital of France is Paris."
    )
    print(f"Clarity score: {result.score}")

if __name__ == "__main__":
    asyncio.run(main())

📊 Available Metrics

  • Faithfulness
  • Answer Relevancy
  • Context Relevancy
  • Summarization
  • Prompt Injection Detection
  • Clarity
  • Helpfulness
  • Toxicity
  • Tone
  • Formality
  • Simplicity
  • Sensitivity
  • Cost Estimation
  • Carbon Emissions

📝 License

This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.

🤝 Contributing

We welcome contributions! If you find a bug, have a feature request, or want to contribute code, please create an issue or submit a pull request.

Git Hooks

This repository includes git hooks to ensure code quality. To install them:

# Make sure you're in the repository root
./scripts/install-hooks.sh

The hooks will run tests, linting, and documentation checks before each push to ensure code quality.

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

trustwise-1.0.0b6-py3-none-any.whl (57.5 kB view details)

Uploaded Python 3

File details

Details for the file trustwise-1.0.0b6-py3-none-any.whl.

File metadata

  • Download URL: trustwise-1.0.0b6-py3-none-any.whl
  • Upload date:
  • Size: 57.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for trustwise-1.0.0b6-py3-none-any.whl
Algorithm Hash digest
SHA256 8831ef37310064e873bae6636ab729ddbe008f91e273dded86cc8ac2a0465be4
MD5 7e8914d6e9562ab9f9b5ea5ce7bdd101
BLAKE2b-256 ece26f561a2370515142f4464e0c781dfdaca650f2403cb378cdf01a929ec325

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page