load_csv_from_content
Parse CSV data from string content into a DataBeak session for analysis and transformation. Configure delimiter and header detection to prepare data for processing.
Instructions
Load CSV data from string content into DataBeak session.
Parses CSV data directly from string with validation. Returns session ID and data preview for further operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | CSV data as string content | |
| delimiter | No | Column delimiter character (comma, tab, semicolon, pipe) | , |
| header_config | No | Header detection configuration |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Sample of loaded data | |
| success | No | Whether operation completed successfully | |
| rows_affected | Yes | Number of rows loaded | |
| memory_usage_mb | No | Memory usage in megabytes | |
| columns_affected | Yes | List of column names detected |