├── .gitignore ├── README.md ├── app.py ├── pages ├── add_product_page.py └── visual_search.py ├── requirements.txt ├── src ├── Chat_RAG_flow.png ├── README.md ├── demo_fashion_insertion.gif ├── demo_rag_1.gif ├── demo_rag_2.gif ├── demo_visual_search.gif ├── sample-data.json ├── semantic_similar_videos_architecture.png ├── tshirt-black.jpg └── workflow-fashion-assistant-twelve-labs.png └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/app.py -------------------------------------------------------------------------------- /pages/add_product_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/pages/add_product_page.py -------------------------------------------------------------------------------- /pages/visual_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/pages/visual_search.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/Chat_RAG_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/Chat_RAG_flow.png -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/demo_fashion_insertion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/demo_fashion_insertion.gif -------------------------------------------------------------------------------- /src/demo_rag_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/demo_rag_1.gif -------------------------------------------------------------------------------- /src/demo_rag_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/demo_rag_2.gif -------------------------------------------------------------------------------- /src/demo_visual_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/demo_visual_search.gif -------------------------------------------------------------------------------- /src/sample-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/sample-data.json -------------------------------------------------------------------------------- /src/semantic_similar_videos_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/semantic_similar_videos_architecture.png -------------------------------------------------------------------------------- /src/tshirt-black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/tshirt-black.jpg -------------------------------------------------------------------------------- /src/workflow-fashion-assistant-twelve-labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/src/workflow-fashion-assistant-twelve-labs.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/Twelve-Labs-Fashion-chat-assistant/HEAD/utils.py --------------------------------------------------------------------------------