Add custom logs and traces and view them in Palico Studio.
tracer
import { tracer } from "@palico-ai/app"; // 1. Create a new tracer const tracer = getTracer("ChatbotAgent"); const newConversation = async (message: string) => { // 2. Start a new span return tracer.trace("OpenAIConversation", async (span) => { // 3. Add attributes to the span span.setAttribute("message", message); const response = await openaiClient.chat.completions.create({ model: "gpt-3.5-turbo", messages: [ // ... your prompts ], }); const responseMessage = response.choices[0].message.content; // additonal attributes span.setAttribute("LLM reply", responseMessage); return response; }); };
logger
import { logger } from "@palico-ai/app"; const newConversation = async (message: string) => { logger.info("Starting new conversation", { message }); const response = await openaiClient.chat.completions.create({ model: "gpt-3.5-turbo", messages: [ // ... your prompts ], }); const responseMessage = response.choices[0].message.content; logger.info("LLM reply", { responseMessage }); return response; };