/** * Coolhand API endpoint for feedback submission */ export declare const COOLHAND_API_URL = "https://coolhandlabs.com/api/v2/llm_request_log_feedbacks"; export declare const VERSION: string; /** * Attribute name for auto-attachment */ export declare const FEEDBACK_ATTRIBUTE = "coolhand-feedback"; /** * Data attribute for workload ID (improves fuzzy matching) */ export declare const WORKLOAD_ID_ATTRIBUTE = "data-coolhand-workload-id"; /** * Data attribute for feedback ID (set after successful submission) */ export declare const FEEDBACK_ID_ATTRIBUTE = "data-coolhand-feedback-id"; /** * Data attribute for storing original output (for textarea/input elements) */ export declare const ORIGINAL_OUTPUT_ATTRIBUTE = "data-coolhand-original-output"; /** * Data attribute for widget style ("overlay", "pixel", or "hidden") */ export declare const WIDGET_STYLE_ATTRIBUTE = "data-coolhand-widget-style"; /** * Data attribute for storing user's explanation */ export declare const EXPLANATION_ATTRIBUTE = "data-coolhand-explanation"; /** * Data attribute for explanation sample rate override (float 0-1) */ export declare const EXPLANATION_PROMPT_ATTRIBUTE = "data-coolhand-explanation-sample-rate"; /** * Debounce delay in milliseconds for input change events */ export declare const DEBOUNCE_MS = 1000; /** * CSS class prefix for all widget styles */ export declare const CSS_PREFIX = "coolhand"; /** * Data attribute to enable pulsating gradient border highlight */ export declare const HIGHLIGHT_ATTRIBUTE = "data-coolhand-highlight"; /** * Data attribute for widget vertical placement ("top" or "bottom") */ export declare const PLACEMENT_VERTICAL_ATTRIBUTE = "data-coolhand-placement-vertical"; /** * Data attribute for widget horizontal placement ("left" or "right") */ export declare const PLACEMENT_HORIZONTAL_ATTRIBUTE = "data-coolhand-placement-horizontal"; //# sourceMappingURL=constants.d.ts.map