End-to-end observability with built-in security guardrails.
Project description
OpenLLMTelemetry
openllmtelemetry
is an open-source Python library that provides Open Telemetry integration with Large Language Models (LLMs). It is designed to facilitate tracing applications that leverage LLMs and Generative AI, ensuring better observability and monitoring.
Features
- Easy integration with Open Telemetry for LLM applications.
- Real-time tracing and monitoring of LLM-based systems.
- Enhanced safeguards and insights for your LLM applications.
Installation
To install openllmtelemetry
simply use pip:
pip install openllmtelemetry
Usage 🚀
Here's a basic example of how to use OpenLLMTelemetry in your project:
First you need to setup a few environment variables to specify where you want your LLM telemetry to be sent, and make sure you also have any API keys set for interacting with your LLM and for sending the telemetry to WhyLabs
import os
os.environ["WHYLABS_DEFAULT_DATASET_ID"] = "your-model-id" # e.g. model-1
os.environ["WHYLABS_API_KEY"] = "replace-with-your-whylabs-api-key"
After you verify your env variables are set you can now instrument your app by running the following:
import openllmtelemetry
openllmtelemetry.instrument()
This will automatically instrument your calls to LLMs to gather open telemetry traces and send these to WhyLabs.
Integration: OpenAI
Integration with an OpenAI application is straightforward with openllmtelemetry
package.
First, you need to set a few environment variables. This can be done via your container set up or via code.
import os
os.environ["WHYLABS_API_KEY"] = "<your-whylabs-api-key>"
os.environ["WHYLABS_DEFAULT_DATASET_ID"] = "<your-llm-resource-id>"
os.environ["WHYLABS_GUARD_ENDPOINT"] = "<your container endpoint>"
os.environ["WHYLABS_GUARD_API_KEY"] = "internal-secret-for-whylabs-Secure"
Once this is done, all of your OpenAI interactions will be automatically traced. If you have rulesets enabled for blocking in WhyLabs Secure policy, the library will block requests accordingly
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{
"role": "system",
"content": "You are a helpful chatbot. "
},
{
"role": "user",
"content": "Aren't noodles amazing?"
}
],
temperature=0.7,
max_tokens=64,
top_p=1
)
Integration: Amazon Bedrock
One of the nice things about openllmtelemetry
is that a single call to intrument your app can work across various LLM providers, using the same instrument call above, you can also invoke models using the boto3 client's bedrock-runtime and interaction with LLMs such as Titan and you get the same level of telemetry extracted and sent to WhyLabs
Note: you may have to test that your boto3 credentials are working to be able to use the below example For details see boto3 documentation
import json
import boto3
def bedrock_titan(prompt: str):
try:
model_id = 'amazon.titan-text-express-v1'
brt = boto3.client(service_name='bedrock-runtime')
response = brt.invoke_model(body=json.dumps({"inputText": prompt}), modelId=model_id)
response_body = json.loads(response.get("body").read())
except Exception as error:
logger.error(f"A client error occurred:{error}")
return response_body
response = bedrock_titan("What is your name and what is the origin and reason for that name?")
print(response)
Requirements 📋
- Python 3.8 or higher
- opentelemetry-api
- opentelemetry-sdk
Contributing 👐
Contributions are welcome! For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
License 📄
OpenLLMTelemetry is licensed under the Apache-2.0 License. See LICENSE for more details.
Contact 📧
For support or any questions, feel free to contact us at support@whylabs.ai.
Documentation
More documentation can be found here on WhyLabs site: https://whylabs.ai/docs/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for openllmtelemetry-0.0.1b3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b788cd0ff5e8de217ac1e79bde6aa55c7fcef0d7276a702fe226fd89caf57516 |
|
MD5 | 5ff6a283a712b5c49b38c56f1413946d |
|
BLAKE2b-256 | c64e7bea9701765ec0dd651a1c495b847037e2336de7316d00ab4811f595ad46 |