get_info
Retrieve file metadata and structure details for CSV files, including column information and data format specifications.
Instructions
Get basic information about a CSV file.
Args:
filename: Name of the CSV file
Returns:
Dictionary with file metadata and structure information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}