//#region src/gen_ai_attributes.d.ts declare const GenAiAttributes: { readonly SYSTEM: "gen_ai.system"; readonly PROVIDER_NAME: "gen_ai.provider.name"; readonly OPERATION_NAME: "gen_ai.operation.name"; readonly REQUEST_MODEL: "gen_ai.request.model"; readonly REQUEST_TEMPERATURE: "gen_ai.request.temperature"; readonly REQUEST_MAX_TOKENS: "gen_ai.request.max_tokens"; readonly REQUEST_FREQUENCY_PENALTY: "gen_ai.request.frequency_penalty"; readonly REQUEST_PRESENCE_PENALTY: "gen_ai.request.presence_penalty"; readonly REQUEST_TOP_P: "gen_ai.request.top_p"; readonly REQUEST_TOP_K: "gen_ai.request.top_k"; readonly REQUEST_STOP_SEQUENCES: "gen_ai.request.stop_sequences"; readonly REQUEST_AVAILABLE_TOOLS: "gen_ai.request.available_tools"; readonly REQUEST_SCHEMA: "gen_ai.request.schema"; readonly RESPONSE_MODEL: "gen_ai.response.model"; readonly RESPONSE_ID: "gen_ai.response.id"; readonly RESPONSE_FINISH_REASONS: "gen_ai.response.finish_reasons"; readonly RESPONSE_TEXT: "gen_ai.response.text"; readonly RESPONSE_TOOL_CALLS: "gen_ai.response.tool_calls"; readonly RESPONSE_OBJECT: "gen_ai.response.object"; readonly INPUT_MESSAGES: "gen_ai.input.messages"; readonly OUTPUT_MESSAGES: "gen_ai.output.messages"; readonly SYSTEM_INSTRUCTIONS: "gen_ai.system_instructions"; readonly USAGE_INPUT_TOKENS: "gen_ai.usage.input_tokens"; readonly USAGE_OUTPUT_TOKENS: "gen_ai.usage.output_tokens"; readonly USAGE_TOTAL_TOKENS: "gen_ai.usage.total_tokens"; readonly USAGE_CACHED_INPUT_TOKENS: "gen_ai.usage.cached_input_tokens"; readonly USAGE_CACHE_READ_INPUT_TOKENS: "gen_ai.usage.cache_read_input_tokens"; readonly USAGE_CACHE_WRITE_TOKENS: "gen_ai.usage.cache_write_tokens"; readonly USAGE_CACHE_WRITE_INPUT_TOKENS: "gen_ai.usage.cache_write_input_tokens"; readonly USAGE_REASONING_TOKENS: "gen_ai.usage.reasoning_tokens"; readonly USAGE_INPUT_TOKENS_CACHED: "gen_ai.usage.input_tokens.cached"; readonly USAGE_INPUT_TOKENS_CACHE_WRITE: "gen_ai.usage.input_tokens.cache_write"; readonly USAGE_OUTPUT_TOKENS_REASONING: "gen_ai.usage.output_tokens.reasoning"; readonly CONVERSATION_ID: "gen_ai.conversation.id"; readonly FUNCTION_ID: "gen_ai.function_id"; readonly AGENT_NAME: "gen_ai.agent.name"; readonly TOOL_NAME: "gen_ai.tool.name"; readonly TOOL_CALL_ID: "gen_ai.tool.call.id"; readonly TOOL_CALL_ARGUMENTS: "gen_ai.tool.call.arguments"; readonly TOOL_CALL_RESULT: "gen_ai.tool.call.result"; readonly TOOL_TYPE: "gen_ai.tool.type"; readonly TOOL_INPUT: "gen_ai.tool.input"; readonly TOOL_OUTPUT: "gen_ai.tool.output"; readonly EVALUATION_ID: "gen_ai.evaluation.id"; readonly EVALUATION_NAME: "gen_ai.evaluation.name"; readonly EVALUATION_SCORE_VALUE: "gen_ai.evaluation.score.value"; readonly EVALUATION_SCORE_LABEL: "gen_ai.evaluation.score.label"; readonly EVALUATION_EXPLANATION: "gen_ai.evaluation.explanation"; readonly EVALUATION_SCORER_ID: "gen_ai.evaluation.scorer.id"; readonly EVALUATION_SCORER_NAME: "gen_ai.evaluation.scorer.name"; readonly EVALUATION_SCORER_VERSION: "gen_ai.evaluation.scorer.version"; readonly EVALUATION_SOURCE: "gen_ai.evaluation.source"; readonly EVALUATION_TARGET_TRACE_ID: "gen_ai.evaluation.target.trace_id"; readonly EVALUATION_TARGET_SPAN_ID: "gen_ai.evaluation.target.span_id"; readonly EVALUATION_TARGET_TYPE: "gen_ai.evaluation.target.type"; readonly EVALUATION_TARGET_NAME: "gen_ai.evaluation.target.name"; readonly EVALUATION_TRACE_ID: "gen_ai.evaluation.trace_id"; readonly EVALUATION_METADATA: "gen_ai.evaluation.metadata"; }; declare const GenAiOperations: { readonly CHAT: "chat"; readonly CREATE_AGENT: "create_agent"; readonly EMBEDDINGS: "embeddings"; readonly EXECUTE_TOOL: "execute_tool"; readonly GENERATE_CONTENT: "generate_content"; readonly GENERATE_TEXT: "generate_text"; readonly GENERATE_OBJECT: "generate_object"; readonly INVOKE_AGENT: "invoke_agent"; readonly INVOKE_WORKFLOW: "invoke_workflow"; readonly RETRIEVAL: "retrieval"; readonly STREAM_TEXT: "stream_text"; readonly STREAM_OBJECT: "stream_object"; readonly TEXT_COMPLETION: "text_completion"; readonly EMBED: "embed"; readonly EMBED_MANY: "embed_many"; readonly RERANK: "rerank"; }; //#endregion export { GenAiAttributes, GenAiOperations };