├── .gitignore ├── README.md ├── coffee_shop_app ├── .env_example.txt ├── .gitignore ├── README.md ├── app-example │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── explore.tsx │ │ └── index.tsx │ ├── +html.tsx │ ├── +not-found.tsx │ └── _layout.tsx ├── app.json ├── app │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── chatRoom.tsx │ │ ├── home.tsx │ │ └── order.tsx │ ├── _layout.tsx │ ├── details.tsx │ ├── index.tsx │ └── thankyou.tsx ├── assets │ ├── fonts │ │ ├── FuzzyBubbles-Regular.ttf │ │ ├── Sora-Bold.ttf │ │ ├── Sora-ExtraBold.ttf │ │ ├── Sora-ExtraLight.ttf │ │ ├── Sora-Light.ttf │ │ ├── Sora-Medium.ttf │ │ ├── Sora-Regular.ttf │ │ ├── Sora-SemiBold.ttf │ │ ├── Sora-Thin.ttf │ │ └── SpaceMono-Regular.ttf │ ├── icons │ │ ├── bag.png │ │ ├── calling.png │ │ ├── discount.png │ │ ├── down_arrow.png │ │ ├── filter.png │ │ ├── heart.png │ │ ├── home.png │ │ ├── left_arrow.png │ │ ├── more_circle.png │ │ ├── notification.png │ │ ├── right_arrow.png │ │ ├── search.png │ │ ├── star.png │ │ └── up_arrow.png │ └── images │ │ ├── 2.png │ │ ├── adaptive-icon.png │ │ ├── banner.png │ │ ├── caffe_mocha.png │ │ ├── caffe_panna.png │ │ ├── favicon.png │ │ ├── flat_white.png │ │ ├── icon.png │ │ ├── index_bg_image.png │ │ ├── mocha_fusi.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash.png ├── babel.config.js ├── components │ ├── Banner.tsx │ ├── CartContext.tsx │ ├── CartProductList.tsx │ ├── CustomKeyboardView.tsx │ ├── DeliveryToggle.tsx │ ├── DescriptionSection.tsx │ ├── DetailsHeader.tsx │ ├── MessageItem.tsx │ ├── MessageList.tsx │ ├── OrdersFooter.tsx │ ├── OrdersHeader.tsx │ ├── PageHeader.tsx │ ├── SearchArea.tsx │ ├── SizesSection.tsx │ ├── TypingIndicator.tsx │ ├── __tests__ │ │ ├── ThemedText-test.tsx │ │ └── __snapshots__ │ │ │ └── ThemedText-test.tsx.snap │ └── navigation │ │ └── TabBarIcon.tsx ├── config │ ├── firebaseConfig.ts │ └── runpodConfigs.ts ├── constants │ └── Colors.ts ├── hooks │ ├── useColorScheme.ts │ ├── useColorScheme.web.ts │ └── useThemeColor.ts ├── package-lock.json ├── package.json ├── scripts │ └── reset-project.js ├── services │ ├── chatBot.ts │ └── productService.ts ├── tailwind.config.js ├── tsconfig.json └── types │ └── types.ts ├── images ├── chatbot_agent_architecture.jpg └── mobile_app.png └── python_code ├── .env_example.txt ├── README.md ├── api ├── .env_example ├── Dockerfile ├── README.md ├── agent_controller.py ├── agents │ ├── __init__.py │ ├── agent_protocol.py │ ├── classification_agent.py │ ├── details_agent.py │ ├── guard_agent.py │ ├── order_taking_agent.py │ ├── recommendation_agent.py │ └── utils.py ├── development_code.py ├── main.py ├── recommendation_objects │ ├── apriori_recommendations.json │ └── popularity_recommendation.csv ├── requirements.txt └── test_input.json ├── build_vector_database.ipynb ├── dataset ├── 201904 sales reciepts.csv ├── Dates.csv ├── customer.csv ├── dataset_link.txt ├── generations.csv ├── pastry inventory.csv ├── product.csv ├── sales targets.csv ├── sales_outlet.csv └── staff.csv ├── firebase_uploader.ipynb ├── products ├── Merry's_way_about_us.txt ├── images │ ├── Chocolate_Croissant.jpg │ ├── Chocolate_syrup.jpg │ ├── Cranberry_Scone.jpg │ ├── Croissant.jpg │ ├── Dark_chocolate.jpg │ ├── Espresso_shot.webp │ ├── Ginger_Biscotti.webp │ ├── Ginger_Scone.webp │ ├── Hazelnut_Biscotti.jpg │ ├── Hazelnut_syrup.webp │ ├── Latte.jpg │ ├── SavoryScone.webp │ ├── Vanilla_syrup.jpg │ ├── almond_croissant.jpg │ ├── cappuccino.jpg │ ├── caramel_syrup.jpg │ ├── chocolat_biscotti.jpg │ └── oatmeal_scones.jpg ├── menu_items_text.txt ├── products.jsonl └── products_prompt_link.txt ├── prompt_engineering_tutorial.ipynb ├── recommendation_engine_training.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/.env 2 | **/npm_installs.txt 3 | **/__pycache__/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/README.md -------------------------------------------------------------------------------- /coffee_shop_app/.env_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/.env_example.txt -------------------------------------------------------------------------------- /coffee_shop_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/.gitignore -------------------------------------------------------------------------------- /coffee_shop_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/README.md -------------------------------------------------------------------------------- /coffee_shop_app/app-example/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app-example/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app-example/(tabs)/explore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app-example/(tabs)/explore.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app-example/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app-example/(tabs)/index.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app-example/+html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app-example/+html.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app-example/+not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app-example/+not-found.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app-example/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app-example/_layout.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app.json -------------------------------------------------------------------------------- /coffee_shop_app/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/(tabs)/chatRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/(tabs)/chatRoom.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/(tabs)/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/(tabs)/home.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/(tabs)/order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/(tabs)/order.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/_layout.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/details.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/index.tsx -------------------------------------------------------------------------------- /coffee_shop_app/app/thankyou.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/app/thankyou.tsx -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/FuzzyBubbles-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/FuzzyBubbles-Regular.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-Bold.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-ExtraBold.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-ExtraLight.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-Light.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-Medium.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-Regular.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-SemiBold.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/Sora-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/Sora-Thin.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/bag.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/calling.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/discount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/discount.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/down_arrow.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/filter.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/heart.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/home.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/left_arrow.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/more_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/more_circle.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/notification.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/right_arrow.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/search.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/star.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/icons/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/icons/up_arrow.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/2.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/banner.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/caffe_mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/caffe_mocha.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/caffe_panna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/caffe_panna.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/favicon.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/flat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/flat_white.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/icon.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/index_bg_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/index_bg_image.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/mocha_fusi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/mocha_fusi.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/react-logo.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /coffee_shop_app/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/assets/images/splash.png -------------------------------------------------------------------------------- /coffee_shop_app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/babel.config.js -------------------------------------------------------------------------------- /coffee_shop_app/components/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/Banner.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/CartContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/CartContext.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/CartProductList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/CartProductList.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/CustomKeyboardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/CustomKeyboardView.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/DeliveryToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/DeliveryToggle.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/DescriptionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/DescriptionSection.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/DetailsHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/DetailsHeader.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/MessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/MessageItem.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/MessageList.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/OrdersFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/OrdersFooter.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/OrdersHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/OrdersHeader.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/PageHeader.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/SearchArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/SearchArea.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/SizesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/SizesSection.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/TypingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/TypingIndicator.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/__tests__/ThemedText-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/__tests__/ThemedText-test.tsx -------------------------------------------------------------------------------- /coffee_shop_app/components/__tests__/__snapshots__/ThemedText-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/__tests__/__snapshots__/ThemedText-test.tsx.snap -------------------------------------------------------------------------------- /coffee_shop_app/components/navigation/TabBarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/components/navigation/TabBarIcon.tsx -------------------------------------------------------------------------------- /coffee_shop_app/config/firebaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/config/firebaseConfig.ts -------------------------------------------------------------------------------- /coffee_shop_app/config/runpodConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/config/runpodConfigs.ts -------------------------------------------------------------------------------- /coffee_shop_app/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/constants/Colors.ts -------------------------------------------------------------------------------- /coffee_shop_app/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /coffee_shop_app/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /coffee_shop_app/hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /coffee_shop_app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/package-lock.json -------------------------------------------------------------------------------- /coffee_shop_app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/package.json -------------------------------------------------------------------------------- /coffee_shop_app/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/scripts/reset-project.js -------------------------------------------------------------------------------- /coffee_shop_app/services/chatBot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/services/chatBot.ts -------------------------------------------------------------------------------- /coffee_shop_app/services/productService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/services/productService.ts -------------------------------------------------------------------------------- /coffee_shop_app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/tailwind.config.js -------------------------------------------------------------------------------- /coffee_shop_app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/tsconfig.json -------------------------------------------------------------------------------- /coffee_shop_app/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/coffee_shop_app/types/types.ts -------------------------------------------------------------------------------- /images/chatbot_agent_architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/images/chatbot_agent_architecture.jpg -------------------------------------------------------------------------------- /images/mobile_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/images/mobile_app.png -------------------------------------------------------------------------------- /python_code/.env_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/.env_example.txt -------------------------------------------------------------------------------- /python_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/README.md -------------------------------------------------------------------------------- /python_code/api/.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/.env_example -------------------------------------------------------------------------------- /python_code/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/Dockerfile -------------------------------------------------------------------------------- /python_code/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/README.md -------------------------------------------------------------------------------- /python_code/api/agent_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agent_controller.py -------------------------------------------------------------------------------- /python_code/api/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/__init__.py -------------------------------------------------------------------------------- /python_code/api/agents/agent_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/agent_protocol.py -------------------------------------------------------------------------------- /python_code/api/agents/classification_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/classification_agent.py -------------------------------------------------------------------------------- /python_code/api/agents/details_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/details_agent.py -------------------------------------------------------------------------------- /python_code/api/agents/guard_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/guard_agent.py -------------------------------------------------------------------------------- /python_code/api/agents/order_taking_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/order_taking_agent.py -------------------------------------------------------------------------------- /python_code/api/agents/recommendation_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/recommendation_agent.py -------------------------------------------------------------------------------- /python_code/api/agents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/agents/utils.py -------------------------------------------------------------------------------- /python_code/api/development_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/development_code.py -------------------------------------------------------------------------------- /python_code/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/main.py -------------------------------------------------------------------------------- /python_code/api/recommendation_objects/apriori_recommendations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/recommendation_objects/apriori_recommendations.json -------------------------------------------------------------------------------- /python_code/api/recommendation_objects/popularity_recommendation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/recommendation_objects/popularity_recommendation.csv -------------------------------------------------------------------------------- /python_code/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/requirements.txt -------------------------------------------------------------------------------- /python_code/api/test_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/api/test_input.json -------------------------------------------------------------------------------- /python_code/build_vector_database.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/build_vector_database.ipynb -------------------------------------------------------------------------------- /python_code/dataset/201904 sales reciepts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/201904 sales reciepts.csv -------------------------------------------------------------------------------- /python_code/dataset/Dates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/Dates.csv -------------------------------------------------------------------------------- /python_code/dataset/customer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/customer.csv -------------------------------------------------------------------------------- /python_code/dataset/dataset_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/dataset_link.txt -------------------------------------------------------------------------------- /python_code/dataset/generations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/generations.csv -------------------------------------------------------------------------------- /python_code/dataset/pastry inventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/pastry inventory.csv -------------------------------------------------------------------------------- /python_code/dataset/product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/product.csv -------------------------------------------------------------------------------- /python_code/dataset/sales targets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/sales targets.csv -------------------------------------------------------------------------------- /python_code/dataset/sales_outlet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/sales_outlet.csv -------------------------------------------------------------------------------- /python_code/dataset/staff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/dataset/staff.csv -------------------------------------------------------------------------------- /python_code/firebase_uploader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/firebase_uploader.ipynb -------------------------------------------------------------------------------- /python_code/products/Merry's_way_about_us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/Merry's_way_about_us.txt -------------------------------------------------------------------------------- /python_code/products/images/Chocolate_Croissant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Chocolate_Croissant.jpg -------------------------------------------------------------------------------- /python_code/products/images/Chocolate_syrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Chocolate_syrup.jpg -------------------------------------------------------------------------------- /python_code/products/images/Cranberry_Scone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Cranberry_Scone.jpg -------------------------------------------------------------------------------- /python_code/products/images/Croissant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Croissant.jpg -------------------------------------------------------------------------------- /python_code/products/images/Dark_chocolate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Dark_chocolate.jpg -------------------------------------------------------------------------------- /python_code/products/images/Espresso_shot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Espresso_shot.webp -------------------------------------------------------------------------------- /python_code/products/images/Ginger_Biscotti.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Ginger_Biscotti.webp -------------------------------------------------------------------------------- /python_code/products/images/Ginger_Scone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Ginger_Scone.webp -------------------------------------------------------------------------------- /python_code/products/images/Hazelnut_Biscotti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Hazelnut_Biscotti.jpg -------------------------------------------------------------------------------- /python_code/products/images/Hazelnut_syrup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Hazelnut_syrup.webp -------------------------------------------------------------------------------- /python_code/products/images/Latte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Latte.jpg -------------------------------------------------------------------------------- /python_code/products/images/SavoryScone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/SavoryScone.webp -------------------------------------------------------------------------------- /python_code/products/images/Vanilla_syrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/Vanilla_syrup.jpg -------------------------------------------------------------------------------- /python_code/products/images/almond_croissant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/almond_croissant.jpg -------------------------------------------------------------------------------- /python_code/products/images/cappuccino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/cappuccino.jpg -------------------------------------------------------------------------------- /python_code/products/images/caramel_syrup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/caramel_syrup.jpg -------------------------------------------------------------------------------- /python_code/products/images/chocolat_biscotti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/chocolat_biscotti.jpg -------------------------------------------------------------------------------- /python_code/products/images/oatmeal_scones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/images/oatmeal_scones.jpg -------------------------------------------------------------------------------- /python_code/products/menu_items_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/menu_items_text.txt -------------------------------------------------------------------------------- /python_code/products/products.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/products.jsonl -------------------------------------------------------------------------------- /python_code/products/products_prompt_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/products/products_prompt_link.txt -------------------------------------------------------------------------------- /python_code/prompt_engineering_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/prompt_engineering_tutorial.ipynb -------------------------------------------------------------------------------- /python_code/recommendation_engine_training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/recommendation_engine_training.ipynb -------------------------------------------------------------------------------- /python_code/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahtarek/coffee_shop_customer_service_chatbot/HEAD/python_code/requirements.txt --------------------------------------------------------------------------------