Back to Agno

Integrations

cookbook/07_knowledge/05_integrations/README.md

2.6.41.5 KB
Original Source

Integrations

Specific reader, cloud storage, and vector database integrations.

Prerequisites

  1. Run Qdrant: ./cookbook/scripts/run_qdrant.sh
  2. Set OPENAI_API_KEY environment variable
  3. For cloud: set provider-specific credentials (see each file)
  4. For managed DBs: install provider packages (see each file)

Readers

FileFormats
readers/01_documents.pyPDF, DOCX, PPTX, Excel
readers/02_data.pyCSV, JSON
readers/03_web.pyWebsite, YouTube, ArXiv, Firecrawl

Cloud Storage

FileProvider
cloud/01_aws.pyS3 buckets
cloud/02_azure.pyAzure Blob Storage
cloud/03_gcp.pyGoogle Cloud Storage
cloud/04_sharepoint.pySharePoint

Vector Databases

FileDatabases
vector_dbs/01_qdrant.pyQdrant (recommended for production)
vector_dbs/02_local.pyChromaDB + LanceDB (local development)
vector_dbs/03_managed.pyPinecone + PgVector (managed/production)

Running

bash
.venvs/demo/bin/python cookbook/07_knowledge/05_integrations/readers/01_documents.py

Further Reading