├── Company_FAQ.pdf ├── Customer Support.json ├── README.md ├── main.py ├── prompts ├── FAQAgent.txt ├── ManagerAgent.txt └── OrderLookupAgent.txt ├── requirements.txt ├── sample_orders.csv └── sample_products.csv /Company_FAQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/Company_FAQ.pdf -------------------------------------------------------------------------------- /Customer Support.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/Customer Support.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Langflow-Customer-Support-Agent -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/main.py -------------------------------------------------------------------------------- /prompts/FAQAgent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/prompts/FAQAgent.txt -------------------------------------------------------------------------------- /prompts/ManagerAgent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/prompts/ManagerAgent.txt -------------------------------------------------------------------------------- /prompts/OrderLookupAgent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/prompts/OrderLookupAgent.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | streamlit 3 | requests -------------------------------------------------------------------------------- /sample_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/sample_orders.csv -------------------------------------------------------------------------------- /sample_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/Langflow-Customer-Support-Agent/HEAD/sample_products.csv --------------------------------------------------------------------------------