Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clickml.app/llms.txt

Use this file to discover all available pages before exploring further.

The CSV Reader is the entry point for tabular data stored in .csv format. It produces a DataFrame that all downstream components can consume.

Configuration

OptionDescriptionDefault
SourceUpload to load a local file, URL to fetch from a web addressUpload
FileThe CSV file to upload
URLA direct link to a publicly accessible CSV file
DelimiterColumn separator character (, ; \t etc.),
HeaderWhether the first row contains column namesYes
EncodingFile encodingutf-8

Input / Output

Type
InputNone
OutputDataFrame

Notes

  • The file is stored securely in your project’s storage. You do not need to re-upload it on subsequent runs.
  • If your columns are not named correctly after loading, check the Delimiter and Header settings.
  • For large files, prefer URL-based loading to avoid upload timeouts.