Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
from pathlib import Path from agno.knowledge.reader.csv_reader import CSVReader reader = CSVReader() csv_path = Path("tmp/test.csv") try: print("Starting read...") documents = reader.read(csv_path) if documents: for doc in documents: print(doc.name) # print(doc.content) print(f"Content length: {len(doc.content)}") print("-" * 80) else: print("No documents were returned") except Exception as e: print(f"Error type: {type(e)}") print(f"Error occurred: {str(e)}")
Set up your virtual environment
uv venv --python 3.12 source .venv/bin/activate
uv venv --python 3.12 .venv\Scripts\activate
Install dependencies
uv pip install -U pandas agno
Run Agent
python examples/basics/knowledge/concepts/readers/overview/csv_reader.py
file
Union[Path, IO[Any]]
delimiter
str
","
quotechar
'"'
Was this page helpful?