LLMCallCompletedEvent

constructor(eventId: String, executionInfo: AgentExecutionInfo, runId: String, prompt: Prompt, model: ModelInfo, responses: List<Message.Response>, moderationResponse: ModerationResult? = null, timestamp: Long = Clock.System.now().toEpochMilliseconds())(source)


constructor(runId: String, prompt: Prompt, model: String, responses: List<Message.Response>, moderationResponse: ModerationResult? = null, eventId: String = LLMCallCompletedEvent::class.simpleName.toString(), timestamp: Long = Clock.System.now().toEpochMilliseconds())(source)

Deprecated

Please use constructor with executionInfo parameter and model parameter of type [ModelInfo]: LLMCallCompletedEvent(executionInfo, runId, prompt, model, responses, moderationResponse, timestamp)

Replace with

LLMCallCompletedEvent(executionInfo, runId, prompt, model, responses, moderationResponse, timestamp)