import_csv_file
Import messages from CSV, TSV, or delimited files by providing column names for message text, sender, and timestamp. Auto-detects delimiter format.
Instructions
Import messages from any CSV file. Provide column names for your data format.
Auto-detects delimiter (comma, tab, semicolon). Supports header rows. Covers LinkedIn exports, any spreadsheet or custom CSV format.
Args: file_path: Path to the CSV, TSV, or delimited file content_column: Column name containing the message text (required) sender_column: Column name containing the sender name (optional) timestamp_column: Column name containing the timestamp (optional, auto-detects format) source_label: Label to tag imported messages with (default: 'csv-import')
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | ||
| content_column | Yes | ||
| sender_column | No | ||
| timestamp_column | No | ||
| source_label | No | csv-import |