Prerequisite Please see here to get and set your API Key environment variable.
Integrating with Helicone is as simple as updating your headers on your OpenAI client. See examples in JS and PY.
JavaScript Example
Python Example
import { Configuration, OpenAIApi } from "openai" ;
const configuration = new Configuration ( {
apiKey: process. env. OPENAI_API_KEY ,
basePath: "https://oai.helicone.ai/v1" ,
baseOptions: {
headers: {
"Helicone-Auth" : ` Bearer $HELICONE_API_KEY ` ,
"Helicone-Lytix-Key" : ` $LYTIX_API_KEY ` ,
} ,
} ,
} ) ;
const openai = new OpenAIApi ( configuration) ;
Then just use Helicone as normal and you’ll see your events in your Lytix dashboard under the name of the model you use.
User Identifier
You can also add the Helicone-User-Id
to get userId information in your Lytix dashboard. This is useful if you want to see how a specific user is using your models.
JavaScript Example
Python Example
import { Configuration, OpenAIApi } from "openai" ;
const configuration = new Configuration ( {
apiKey: process. env. OPENAI_API_KEY ,
basePath: "https://oai.helicone.ai/v1" ,
baseOptions: {
headers: {
"Helicone-Auth" : ` Bearer $HELICONE_API_KEY ` ,
"Helicone-Lytix-Key" : ` $LYTIX_API_KEY ` ,
"Helicone-User-Id" : ` $USER_ID ` ,
} ,
} ,
} ) ;
const openai = new OpenAIApi ( configuration) ;
You can now see the user identifier property in your Lytix dashboard.
EU Servers
If you are using the EU servers via Helicone. You will need to set the Helicone-Lytix-Host
to https://eu.api.lytix.co
.
JavaScript Example
Python Example
import { Configuration, OpenAIApi } from "openai" ;
const configuration = new Configuration ( {
apiKey: process. env. OPENAI_API_KEY ,
basePath: "https://oai.helicone.ai/v1" ,
baseOptions: {
headers: {
"Helicone-Auth" : ` Bearer $HELICONE_API_KEY ` ,
"Helicone-Lytix-Key" : ` $LYTIX_API_KEY ` ,
"Helicone-Lytix-Host" : "https://eu.api.lytix.co" , # Add this
} ,
} ,
} ) ;
const openai = new OpenAIApi ( configuration) ;