OpenAI
This guide explains how to integrate Opik with the OpenAI Python SDK. By using the track_openai
method provided by opik, you can easily track and evaluate your OpenAI API calls within your Opik projects as Opik will automatically log the input prompt, model used, token usage, and response generated.
Getting started
First, ensure you have both opik
and openai
packages installed:
pip install opik openai
In addition, you can configure Opik using the opik configure
command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
opik configure
Tracking OpenAI API calls
from opik.integrations.openai import track_openai
from openai import OpenAI
openai_client = OpenAI()
openai_client = track_openai(openai_client)
prompt="Hello, world!"
response = openai_client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role":"user", "content":prompt}
],
temperature=0.7,
max_tokens=100,
top_p=1,
frequency_penalty=0,
presence_penalty=0
)
print(response.choices[0].message.content)
The track_openai
will automatically track and log the API call, including the input prompt, model used, and response generated. You can view these logs in your Opik project dashboard.
By following these steps, you can seamlessly integrate Opik with the OpenAI Python SDK and gain valuable insights into your model's performance and usage.