load_csv
Import a CSV file into a session for processing and analysis. Specify file path, encoding, and delimiter to prepare data for manipulation or validation.
Instructions
Load a CSV file into a session.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delimiter | No | , | |
encoding | No | utf-8 | |
file_path | Yes | ||
session_id | No |
Input Schema (JSON Schema)
{
"properties": {
"delimiter": {
"default": ",",
"title": "Delimiter",
"type": "string"
},
"encoding": {
"default": "utf-8",
"title": "Encoding",
"type": "string"
},
"file_path": {
"title": "File Path",
"type": "string"
},
"session_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session Id"
}
},
"required": [
"file_path"
],
"type": "object"
}