#!/usr/bin/env python3
"""
Launcher script for LangSmith export utility
Runs the export script from the src/scripts/ directory
"""

import sys
import os
import subprocess

if __name__ == '__main__':
    # Run the export script directly using subprocess
    script_path = os.path.join(os.path.dirname(__file__), 'src', 'scripts', 'export_run.py')
    subprocess.run([sys.executable, script_path])
