The Data Retrieval Agent is responsible for accessing, extracting, and preparing data from various sources and formats. It serves as the primary interface between raw data sources and the BrightAgent ecosystem, enabling seamless data access for analysis, transformation, and visualization.
Watch the Data Retrieval Agent demonstrate its capabilities in this end-to-end workflow:This demo starts at 10:00 and shows the retrieval agent highlighting data source connection, extraction, and preparation processes. Watch for approximately 4 minutes to see the complete retrieval workflow.
-- The agent can execute complex queries across multiple sourcesSELECT u.user_id, u.email, o.order_total, p.product_nameFROM users uLEFT JOIN orders o ON u.user_id = o.user_idLEFT JOIN products p ON o.product_id = p.product_idWHERE o.created_date >= '2024-01-01'