diff --git a/recipes/use_cases/README.md b/recipes/use_cases/README.md index fa23b8cfda54a7c3612a9e7e1e189ebe2585b7b9..0a39c4a4423b521d0bd5d81a258e00d14345e354 100644 --- a/recipes/use_cases/README.md +++ b/recipes/use_cases/README.md @@ -7,16 +7,16 @@ This demo app shows how to use LangChain and Llama 3 to let users ask questions ## [live_data](live_data.ipynb): Ask Llama 3 about Live Data (using Replicate or [OctoAI](../3p_integrations/octoai/live_data.ipynb)) This demo app shows how to perform live data augmented generation tasks with Llama 3, [LlamaIndex](https://github.com/run-llama/llama_index), another leading open-source framework for building LLM apps, and the [Tavily](https://tavily.com) live search API. -## [WhatsApp Chatbot](./customerservice_chatbots/whatsapp_llama/whatsapp_llama3.md): Building a Llama 3 Enabled WhatsApp Chatbot +## [WhatsApp Chatbot](./customerservice_chatbots/whatsapp_chatbot/whatsapp_llama3.md): Building a Llama 3 Enabled WhatsApp Chatbot This step-by-step tutorial shows how to use the [WhatsApp Business API](https://developers.facebook.com/docs/whatsapp/cloud-api/overview) to build a Llama 3 enabled WhatsApp chatbot. -## [Messenger Chatbot](./customerservice_chatbots/messenger_llama/messenger_llama3.md): Building a Llama 3 Enabled Messenger Chatbot +## [Messenger Chatbot](./customerservice_chatbots/messenger_chatbot/messenger_llama3.md): Building a Llama 3 Enabled Messenger Chatbot This step-by-step tutorial shows how to use the [Messenger Platform](https://developers.facebook.com/docs/messenger-platform/overview) to build a Llama 3 enabled Messenger chatbot. ### RAG Chatbot Example (running [locally](./customerservice_chatbots/RAG_chatbot/RAG_Chatbot_Example.ipynb) or on [OctoAI](../3p_integrations/octoai/RAG_chatbot_example/RAG_chatbot_example.ipynb)) A complete example of how to build a Llama 3 chatbot hosted on your browser that can answer questions based on your own data using retrieval augmented generation (RAG). You can run Llama2 locally if you have a good enough GPU or on OctoAI if you follow the note [here](../README.md#octoai_note). -## [Sales Bot](./customerservice_chatbots/sales_bot/SalesBot.ipynb): Sales Bot with Llama3 - A Summarization and RAG Use Case +## [Sales Bot](./customerservice_chatbots/ai_agent_chatbot/SalesBot.ipynb): Sales Bot with Llama3 - A Summarization and RAG Use Case An summarization + RAG use case built around the Amazon product review Kaggle dataset to build a helpful Music Store Sales Bot. The summarization and RAG are built on top of Llama models hosted on OctoAI, and the vector database is hosted on Weaviate Cloud Services. ## [Media Generation](./MediaGen.ipynb): Building a Video Generation Pipeline with Llama3 diff --git a/recipes/use_cases/customerservice_chatbots/sales_bot/SalesBot.ipynb b/recipes/use_cases/customerservice_chatbots/ai_agent_chatbot/SalesBot.ipynb similarity index 100% rename from recipes/use_cases/customerservice_chatbots/sales_bot/SalesBot.ipynb rename to recipes/use_cases/customerservice_chatbots/ai_agent_chatbot/SalesBot.ipynb diff --git a/recipes/use_cases/customerservice_chatbots/sales_bot/Musical_instruments_reviews.csv b/recipes/use_cases/customerservice_chatbots/ai_agent_chatbot/musical_instruments_reviews.csv similarity index 100% rename from recipes/use_cases/customerservice_chatbots/sales_bot/Musical_instruments_reviews.csv rename to recipes/use_cases/customerservice_chatbots/ai_agent_chatbot/musical_instruments_reviews.csv diff --git a/recipes/use_cases/customerservice_chatbots/messenger_llama/llama_messenger.py b/recipes/use_cases/customerservice_chatbots/messenger_chatbot/llama_messenger.py similarity index 100% rename from recipes/use_cases/customerservice_chatbots/messenger_llama/llama_messenger.py rename to recipes/use_cases/customerservice_chatbots/messenger_chatbot/llama_messenger.py diff --git a/recipes/use_cases/customerservice_chatbots/messenger_llama/messenger_llama3.md b/recipes/use_cases/customerservice_chatbots/messenger_chatbot/messenger_llama3.md similarity index 95% rename from recipes/use_cases/customerservice_chatbots/messenger_llama/messenger_llama3.md rename to recipes/use_cases/customerservice_chatbots/messenger_chatbot/messenger_llama3.md index 365d2aad3c5b04f6b396a3a33afd09948972a721..a410a5647c2615ef041eadb865a2a0e1e22859d2 100644 --- a/recipes/use_cases/customerservice_chatbots/messenger_llama/messenger_llama3.md +++ b/recipes/use_cases/customerservice_chatbots/messenger_chatbot/messenger_llama3.md @@ -2,7 +2,7 @@ This step-by-step tutorial shows the complete process of building a Llama-enabled Messenger chatbot. A demo video of using the iOS Messenger app to send a question to a Facebook business page and receive the Llama 3 generated answer is [here](https://drive.google.com/file/d/1B4ijFH4X3jEHZfkGdTPmdsgpUes_RNud/view). -If you're interested in a Llama 3 enabled WhatsApp chatbot, see [here](../whatsapp_llama/whatsapp_llama3.md) for a tutorial. +If you're interested in a Llama 3 enabled WhatsApp chatbot, see [here](../whatsapp_chatbot/whatsapp_llama3.md) for a tutorial. ## Overview @@ -16,7 +16,7 @@ The diagram below shows the components and overall data flow of the Llama 3 enab 1. A Facebook Page is required to send and receive messages using the Messenger Platform - see [here](https://www.facebook.com/business/help/461775097570076?id=939256796236247) for details about Facebook Pages and how to create a new page. -2. If you have followed the [Llama WhatsApp chatbot tutorial](../whatsapp_llama/whatsapp_llama3.md), or if you already have a Meta developer account and a business app, then you can skip this step. Otherwise, you need to first [create a Meta developer account](https://developers.facebook.com/) and then [create a business app](https://developers.facebook.com/docs/development/create-an-app/). +2. If you have followed the [Llama WhatsApp chatbot tutorial](../whatsapp_chatbot/whatsapp_llama3.md), or if you already have a Meta developer account and a business app, then you can skip this step. Otherwise, you need to first [create a Meta developer account](https://developers.facebook.com/) and then [create a business app](https://developers.facebook.com/docs/development/create-an-app/). 3. Add the Messenger product to your business app by going to your business app's Dashboard, click "Add Product" and then select "Messenger". diff --git a/recipes/use_cases/customerservice_chatbots/whatsapp_llama/llama_chatbot.py b/recipes/use_cases/customerservice_chatbots/whatsapp_chatbot/llama_chatbot.py similarity index 100% rename from recipes/use_cases/customerservice_chatbots/whatsapp_llama/llama_chatbot.py rename to recipes/use_cases/customerservice_chatbots/whatsapp_chatbot/llama_chatbot.py diff --git a/recipes/use_cases/customerservice_chatbots/whatsapp_llama/whatsapp_llama3.md b/recipes/use_cases/customerservice_chatbots/whatsapp_chatbot/whatsapp_llama3.md similarity index 99% rename from recipes/use_cases/customerservice_chatbots/whatsapp_llama/whatsapp_llama3.md rename to recipes/use_cases/customerservice_chatbots/whatsapp_chatbot/whatsapp_llama3.md index c003f72a3316f9897d4e72cc0b140955ff9053f0..9b022785b4e9455be9fc50faf7b0e7f912062c4f 100644 --- a/recipes/use_cases/customerservice_chatbots/whatsapp_llama/whatsapp_llama3.md +++ b/recipes/use_cases/customerservice_chatbots/whatsapp_chatbot/whatsapp_llama3.md @@ -2,7 +2,7 @@ This step-by-step tutorial shows the complete process of building a Llama 3 enabled WhatsApp chatbot. A demo video of using the iOS WhatsApp to send a question to a test phone number and receive the Llama 3 generated answer is [here](https://drive.google.com/file/d/1fZDaOsvyE1yrNGETV-e0SvL14BYeAI6R/view). -If you're interested in a Llama 3 enabled Messenger chatbot, see [here](../messenger_llama/messenger_llama3.md) for a tutorial. +If you're interested in a Llama 3 enabled Messenger chatbot, see [here](../messenger_chatbot/messenger_llama3.md) for a tutorial. ## Overview