Hey! Is the following supposed to just work out of the box in a langchain next js app:
const model = new ChatOpenAI(
{
modelName: "gpt-3.5-turbo",
temperature: 0.2,
},
{
basePath: "https://oai.hconeai.com/v1",
},
);
Because I don't see any logs in the helicone console. I added my api key as the env var HELICONE_API_KEY. Am I missing something??