import type { SemanticConventions } from "@arizeai/openinference-semantic-conventions"; type LLMMessageToolCall = { [SemanticConventions.TOOL_CALL_FUNCTION_NAME]?: string; [SemanticConventions.TOOL_CALL_FUNCTION_ARGUMENTS_JSON]?: string; }; export type LLMMessageToolCalls = { [SemanticConventions.MESSAGE_TOOL_CALLS]?: LLMMessageToolCall[]; }; export type LLMMessageFunctionCall = { [SemanticConventions.MESSAGE_FUNCTION_CALL_NAME]?: string; [SemanticConventions.MESSAGE_FUNCTION_CALL_ARGUMENTS_JSON]?: string; }; export type LLMMessage = LLMMessageToolCalls & LLMMessageFunctionCall & { [SemanticConventions.MESSAGE_ROLE]?: string; [SemanticConventions.MESSAGE_CONTENT]?: string; }; export type LLMMessagesAttributes = | { [SemanticConventions.LLM_INPUT_MESSAGES]: LLMMessage[]; } | { [SemanticConventions.LLM_OUTPUT_MESSAGES]: LLMMessage[]; }; export type RetrievalDocument = { [SemanticConventions.DOCUMENT_CONTENT]?: string; [SemanticConventions.DOCUMENT_METADATA]?: string; }; export type LLMParameterAttributes = { [SemanticConventions.LLM_MODEL_NAME]?: string; [SemanticConventions.LLM_INVOCATION_PARAMETERS]?: string; [key: `${typeof SemanticConventions.LLM_TOOLS}.${number}.${typeof SemanticConventions.TOOL_JSON_SCHEMA}`]: string; }; export type PromptTemplateAttributes = { [SemanticConventions.PROMPT_TEMPLATE_TEMPLATE]?: string; [SemanticConventions.PROMPT_TEMPLATE_VARIABLES]?: string; }; export type TokenCountAttributes = { [SemanticConventions.LLM_TOKEN_COUNT_COMPLETION]?: number; [SemanticConventions.LLM_TOKEN_COUNT_PROMPT]?: number; [SemanticConventions.LLM_TOKEN_COUNT_TOTAL]?: number; [SemanticConventions.LLM_TOKEN_COUNT_PROMPT_DETAILS_CACHE_READ]?: number; [SemanticConventions.LLM_TOKEN_COUNT_PROMPT_DETAILS_CACHE_WRITE]?: number; [SemanticConventions.LLM_TOKEN_COUNT_PROMPT_DETAILS_AUDIO]?: number; [SemanticConventions.LLM_TOKEN_COUNT_COMPLETION_DETAILS_REASONING]?: number; [SemanticConventions.LLM_TOKEN_COUNT_COMPLETION_DETAILS_AUDIO]?: number; }; export type ToolAttributes = { [SemanticConventions.TOOL_NAME]?: string; [SemanticConventions.TOOL_DESCRIPTION]?: string; };