apps/opik-documentation/documentation/fern/docs/tracing/integrations/portkey.mdx
Portkey is an enterprise-grade AI gateway that provides a unified interface to access 200+ LLMs with advanced features like smart routing, automatic fallbacks, load balancing, and comprehensive observability.
Portkey provides enterprise-grade features for managing LLM API access, including:
Comet provides a hosted version of the Opik platform. Simply create an account and grab your API Key.
You can also run the Opik platform locally, see the installation guide for more information.
First, ensure you have opik, openai, and portkey-ai packages installed:
pip install opik openai portkey-ai
Configure the Opik Python SDK for your deployment type. See the Python SDK Configuration guide for detailed instructions on:
opik configureopik.configure()You'll need a Portkey API key and virtual keys for your LLM providers. You can get these from the Portkey dashboard.
Set your API keys as environment variables:
export PORTKEY_API_KEY="YOUR_PORTKEY_API_KEY"
export PORTKEY_VIRTUAL_KEY="YOUR_PORTKEY_VIRTUAL_KEY"
Or set them programmatically:
import os
import getpass
if "PORTKEY_API_KEY" not in os.environ:
os.environ["PORTKEY_API_KEY"] = getpass.getpass("Enter your Portkey API key: ")
if "PORTKEY_VIRTUAL_KEY" not in os.environ:
os.environ["PORTKEY_VIRTUAL_KEY"] = getpass.getpass("Enter your Portkey virtual key: ")
Since Portkey provides an OpenAI-compatible API, we can use the Opik OpenAI SDK wrapper to automatically log Portkey calls as generations in Opik.
import os
from opik.integrations.openai import track_openai
from openai import OpenAI
from portkey_ai import PORTKEY_GATEWAY_URL, createHeaders
client = OpenAI(
api_key=os.environ["OPENAI_API_KEY"],
base_url=PORTKEY_GATEWAY_URL,
default_headers=createHeaders(
api_key=os.environ["PORTKEY_API_KEY"],
provider="@OPENAI_PROVIDER"
)
)
# Wrap the client with Opik tracking
client = track_openai(client, project_name="portkey-integration-demo")
# Make a chat completion request
response = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "You are a knowledgeable AI assistant."},
{"role": "user", "content": "What is the largest city in France?"}
]
)
# Print the assistant's reply
print(response.choices[0].message.content)
@track decoratorIf you have multiple steps in your LLM pipeline, you can use the @track decorator to log the traces for each step. If Portkey is called within one of these steps, the LLM call will be associated with that corresponding step:
import os
from opik import track
from opik.integrations.openai import track_openai
from openai import OpenAI
from portkey_ai import PORTKEY_GATEWAY_URL, createHeaders
# Create an OpenAI client configured for Portkey
client = OpenAI(
api_key=os.environ["OPENAI_API_KEY"],
base_url=PORTKEY_GATEWAY_URL,
default_headers=createHeaders(
api_key=os.environ["PORTKEY_API_KEY"],
provider="@OPENAI_PROVIDER"
)
)
# Wrap the client with Opik tracking
client = track_openai(client, project_name="portkey-integration-demo")
@track
def generate_response(prompt: str):
response = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "You are a knowledgeable AI assistant."},
{"role": "user", "content": prompt}
]
)
return response.choices[0].message.content
@track
def refine_response(initial_response: str):
response = client.chat.completions.create(
model="gpt-4",
messages=[
{"role": "system", "content": "You enhance and polish text responses."},
{"role": "user", "content": f"Please improve this response: {initial_response}"}
]
)
return response.choices[0].message.content
@track(project_name="portkey-integration-demo")
def generate_and_refine(prompt: str):
# First LLM call: Generate initial response
initial = generate_response(prompt)
# Second LLM call: Refine the response
refined = refine_response(initial)
return refined
# Example usage
result = generate_and_refine("Explain quantum computing in simple terms.")
The trace will show nested LLM calls with hierarchical spans.
If you have suggestions for improving the Portkey integration, please let us know by opening an issue on GitHub.