Parameters for tracing an LLM call

interface TraceLlmParams {
    invocationContext: InvocationContext;
    eventId: string;
    llmRequest: LlmRequest;
    llmResponse: LlmResponse;
}

Properties

invocationContext: InvocationContext
eventId: string
llmRequest: LlmRequest
llmResponse: LlmResponse