From c1b24ad9c227d22bc74b9abe7d7b8cb1af93ff98 Mon Sep 17 00:00:00 2001 From: Santiago Olivar Date: Fri, 26 Apr 2024 11:41:44 -0700 Subject: [PATCH] included code generator agent example --- _posts/2024-04-19-Data-Agents-With-LalaIndex.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/_posts/2024-04-19-Data-Agents-With-LalaIndex.md b/_posts/2024-04-19-Data-Agents-With-LalaIndex.md index 25cde07..5d883b9 100644 --- a/_posts/2024-04-19-Data-Agents-With-LalaIndex.md +++ b/_posts/2024-04-19-Data-Agents-With-LalaIndex.md @@ -9,7 +9,10 @@ As discussed in previous posts, LlamaIndex offers a toolkit that enables the est This post was inspired by the tutorial series on Agents and Tools provided by LlamaIndex in their April 16, 2024, newsletter. Additionally, they have shared tutorial series videos available [here](https://www.youtube.com/watch?v=-AuHlVMyEA0). -I've prepared a few examples based on those shared by LlamaIndex in their tutorial series, which are already accessible in our [bubl-ai GitHub repository](https://github.com/bubl-ai/llamaindex-project/tree/main/examples/data_agents). These examples offer valuable insights for anyone interested in gaining a deeper understanding of agent reasoning to develop simple applications. +I've prepared a few examples based on those shared by LlamaIndex in their tutorial series, which are already accessible in our [bubl-ai GitHub repository](https://github.com/bubl-ai/llamaindex-project/tree/main). These examples offer valuable insights for anyone interested in gaining a deeper understanding of agent reasoning to develop simple applications: +- [Code Generator Agent](https://github.com/bubl-ai/llamaindex-project/tree/main/examples/code_generator_agent) +- [Intro to agents](https://github.com/bubl-ai/llamaindex-project/tree/main/examples/data_agents). + ## What are Data Agents Data Agents expand upon the capabilities of traditional query engines by enabling continuous interaction with data sources, providing a more adaptable and responsive approach to data management. Their ability to intelligently execute tasks over data allows for autonomous searches, retrieval, and ingestion of new information, with the capability to adapt based on this data. Additionally, they can integrate with external service APIs and perform operations such as reading, modifying, and writing data.