├── .gitignore ├── AssetsREADME ├── Diagram1.png ├── Diagram2.png ├── image-1.png ├── image-2.png └── image.png ├── README.md ├── backend ├── PineconeLocal │ ├── __init__.py │ ├── bm25.pkl │ ├── bm25_choli.pkl │ ├── bm25_jhumka.pkl │ ├── others │ │ ├── Core.py │ │ ├── Current-Data.csv │ │ ├── Current-Data1.csv │ │ ├── Modular.py │ │ ├── __init__.py │ │ ├── ecommerce-search.ipynb │ │ └── file.py │ ├── pyvenv.cfg │ ├── query_pinecone.py │ ├── upsert_pinecone.py │ └── utils │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── pinecone_utils.py │ │ └── user_bio_data │ │ ├── __init__.py │ │ └── userBio.py ├── Scripts │ ├── __init__.py │ ├── characterReplacer.py │ ├── csvDataInsight.py │ ├── csvDataSplitter.py │ ├── datasetModifier.py │ ├── entryTypeFrequency.py │ ├── frequency.py │ ├── keywordEntryExtract.py │ ├── keywordFrequency.py │ ├── newDataSetGenerator.py │ ├── uniqueValuesScript.py │ └── userDataGenerator.py ├── __init__.py ├── chat_bot │ ├── __init__.py │ ├── bot_choser.py │ ├── gpt_bot.py │ └── gpt_for_everyone.py ├── dataset │ ├── choli.csv │ ├── downloadImages.py │ ├── jhumka.csv │ ├── main_dataset.csv │ ├── top_100.csv │ ├── trends_data │ │ └── trends.csv │ └── user_history_data │ │ ├── gwen.csv │ │ ├── gwen_2.csv │ │ └── john.csv ├── get_filters_from_insights.py ├── handle_change_prompt.py ├── insights │ └── __init__.py ├── main.py ├── pre_process_hard_filters.py ├── prompt_insights.py ├── server.py ├── user_purchase_insights.py └── utils │ ├── __init__.py │ ├── dict_lists.py │ ├── festivals.py │ ├── process_outfit.py │ └── uniqueValues.py ├── fashion_trends_scrapper └── scrap_instagram.py ├── frontend └── neytiri-frontend │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Loader │ ├── Loader.css │ └── Loader.js │ ├── OutfitCard.css │ ├── OutfitCard.js │ ├── UserMessage.css │ ├── UserMessage.js │ ├── broom.png │ ├── broom.svg │ ├── chatIcon.png │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── send.png │ ├── send.svg │ ├── send2.svg │ ├── send3.svg │ └── setupTests.js └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/.gitignore -------------------------------------------------------------------------------- /AssetsREADME/Diagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/AssetsREADME/Diagram1.png -------------------------------------------------------------------------------- /AssetsREADME/Diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/AssetsREADME/Diagram2.png -------------------------------------------------------------------------------- /AssetsREADME/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/AssetsREADME/image-1.png -------------------------------------------------------------------------------- /AssetsREADME/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/AssetsREADME/image-2.png -------------------------------------------------------------------------------- /AssetsREADME/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/AssetsREADME/image.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/README.md -------------------------------------------------------------------------------- /backend/PineconeLocal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/PineconeLocal/bm25.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/bm25.pkl -------------------------------------------------------------------------------- /backend/PineconeLocal/bm25_choli.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/bm25_choli.pkl -------------------------------------------------------------------------------- /backend/PineconeLocal/bm25_jhumka.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/bm25_jhumka.pkl -------------------------------------------------------------------------------- /backend/PineconeLocal/others/Core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/others/Core.py -------------------------------------------------------------------------------- /backend/PineconeLocal/others/Current-Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/others/Current-Data.csv -------------------------------------------------------------------------------- /backend/PineconeLocal/others/Current-Data1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/others/Current-Data1.csv -------------------------------------------------------------------------------- /backend/PineconeLocal/others/Modular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/others/Modular.py -------------------------------------------------------------------------------- /backend/PineconeLocal/others/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/PineconeLocal/others/ecommerce-search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/others/ecommerce-search.ipynb -------------------------------------------------------------------------------- /backend/PineconeLocal/others/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/others/file.py -------------------------------------------------------------------------------- /backend/PineconeLocal/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/pyvenv.cfg -------------------------------------------------------------------------------- /backend/PineconeLocal/query_pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/query_pinecone.py -------------------------------------------------------------------------------- /backend/PineconeLocal/upsert_pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/upsert_pinecone.py -------------------------------------------------------------------------------- /backend/PineconeLocal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/PineconeLocal/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/utils/filters.py -------------------------------------------------------------------------------- /backend/PineconeLocal/utils/pinecone_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/utils/pinecone_utils.py -------------------------------------------------------------------------------- /backend/PineconeLocal/utils/user_bio_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/PineconeLocal/utils/user_bio_data/userBio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/PineconeLocal/utils/user_bio_data/userBio.py -------------------------------------------------------------------------------- /backend/Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/Scripts/characterReplacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/characterReplacer.py -------------------------------------------------------------------------------- /backend/Scripts/csvDataInsight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/csvDataInsight.py -------------------------------------------------------------------------------- /backend/Scripts/csvDataSplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/csvDataSplitter.py -------------------------------------------------------------------------------- /backend/Scripts/datasetModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/datasetModifier.py -------------------------------------------------------------------------------- /backend/Scripts/entryTypeFrequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/entryTypeFrequency.py -------------------------------------------------------------------------------- /backend/Scripts/frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/frequency.py -------------------------------------------------------------------------------- /backend/Scripts/keywordEntryExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/keywordEntryExtract.py -------------------------------------------------------------------------------- /backend/Scripts/keywordFrequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/keywordFrequency.py -------------------------------------------------------------------------------- /backend/Scripts/newDataSetGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/newDataSetGenerator.py -------------------------------------------------------------------------------- /backend/Scripts/uniqueValuesScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/uniqueValuesScript.py -------------------------------------------------------------------------------- /backend/Scripts/userDataGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/Scripts/userDataGenerator.py -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/chat_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/chat_bot/bot_choser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/chat_bot/bot_choser.py -------------------------------------------------------------------------------- /backend/chat_bot/gpt_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/chat_bot/gpt_bot.py -------------------------------------------------------------------------------- /backend/chat_bot/gpt_for_everyone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/chat_bot/gpt_for_everyone.py -------------------------------------------------------------------------------- /backend/dataset/choli.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/choli.csv -------------------------------------------------------------------------------- /backend/dataset/downloadImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/downloadImages.py -------------------------------------------------------------------------------- /backend/dataset/jhumka.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/jhumka.csv -------------------------------------------------------------------------------- /backend/dataset/main_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/main_dataset.csv -------------------------------------------------------------------------------- /backend/dataset/top_100.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/top_100.csv -------------------------------------------------------------------------------- /backend/dataset/trends_data/trends.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/trends_data/trends.csv -------------------------------------------------------------------------------- /backend/dataset/user_history_data/gwen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/user_history_data/gwen.csv -------------------------------------------------------------------------------- /backend/dataset/user_history_data/gwen_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/user_history_data/gwen_2.csv -------------------------------------------------------------------------------- /backend/dataset/user_history_data/john.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/dataset/user_history_data/john.csv -------------------------------------------------------------------------------- /backend/get_filters_from_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/get_filters_from_insights.py -------------------------------------------------------------------------------- /backend/handle_change_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/handle_change_prompt.py -------------------------------------------------------------------------------- /backend/insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/pre_process_hard_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/pre_process_hard_filters.py -------------------------------------------------------------------------------- /backend/prompt_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/prompt_insights.py -------------------------------------------------------------------------------- /backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/server.py -------------------------------------------------------------------------------- /backend/user_purchase_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/user_purchase_insights.py -------------------------------------------------------------------------------- /backend/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/utils/__init__.py -------------------------------------------------------------------------------- /backend/utils/dict_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/utils/dict_lists.py -------------------------------------------------------------------------------- /backend/utils/festivals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/utils/festivals.py -------------------------------------------------------------------------------- /backend/utils/process_outfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/utils/process_outfit.py -------------------------------------------------------------------------------- /backend/utils/uniqueValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/backend/utils/uniqueValues.py -------------------------------------------------------------------------------- /fashion_trends_scrapper/scrap_instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/fashion_trends_scrapper/scrap_instagram.py -------------------------------------------------------------------------------- /frontend/neytiri-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/.gitignore -------------------------------------------------------------------------------- /frontend/neytiri-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/neytiri-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/package.json -------------------------------------------------------------------------------- /frontend/neytiri-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/neytiri-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/public/index.html -------------------------------------------------------------------------------- /frontend/neytiri-frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/neytiri-frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/neytiri-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/neytiri-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/App.css -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/App.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/Loader/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/Loader/Loader.css -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/Loader/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/Loader/Loader.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/OutfitCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/OutfitCard.css -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/OutfitCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/OutfitCard.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/UserMessage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/UserMessage.css -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/UserMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/UserMessage.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/broom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/broom.png -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/broom.svg -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/chatIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/chatIcon.png -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/index.css -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/index.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/send.png -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/send.svg -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/send2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/send2.svg -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/send3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/send3.svg -------------------------------------------------------------------------------- /frontend/neytiri-frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/frontend/neytiri-frontend/src/setupTests.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AyushUnleashed/flipkart-grid-5/HEAD/requirements.txt --------------------------------------------------------------------------------