amirulhazym commited on
Commit
c4d9cb7
Β·
1 Parent(s): 39e5fad

Feat: Implement V2 API-driven conversational AI system using Gemini 2.5 Flash Lite model

Browse files

This commit marks a complete architectural overhaul of the project,
migrating from a simple prototype & mvp (v1) to a professional,
decoupled system (v2).

Key changes include:

- Establishes a professional project structure with distinct directories
for `v1_self_hosted_rag` and `v2_multilingual_api`.

- Implements the V2 backend as a secure FastAPI application, featuring:
- An advanced retrieve-and-re-rank pipeline with Pinecone and a
Cross-Encoder model for high-quality context retrieval.
- Integration with the Google Gemini API for state-of-the-art
generative responses.
- Full multilingual support for English and Malay.

- Develops the V2 frontend as a modern Streamlit chat interface that
communicates with the backend API and manages conversation state.

- Introduces a secure method for handling API keys using a `.env`
file for local development, which is protected by `.gitignore`.

This lays the foundation for all future development and deployment of
the v2 application.

This view is limited to 50 files because it contains too many changes. Β  See raw diff
Files changed (50) hide show
  1. .gitignore +3 -126
  2. README.md +19 -12
  3. debug_retriever.py +0 -99
  4. knowledge_base/{15 April KB update.txt β†’ v1_malay/15 April KB update.txt} +0 -0
  5. knowledge_base/{23 April KB update.txt β†’ v1_malay/23 April KB update.txt} +0 -0
  6. knowledge_base/{Berapa lama tempoh pemulangan untuk LazMall.txt β†’ v1_malay/Berapa lama tempoh pemulangan untuk LazMall.txt} +0 -0
  7. knowledge_base/{KB - Panduan E-dagang Malaysia (Bahasa Melayu).txt β†’ v1_malay/KB - Panduan E-dagang Malaysia (Bahasa Melayu).txt} +0 -0
  8. knowledge_base/{lazada_faq.txt β†’ v1_malay/lazada_faq.txt} +0 -0
  9. knowledge_base/{shipping_status.txt β†’ v1_malay/shipping_status.txt} +0 -0
  10. knowledge_base/{shopasia_faq.txt β†’ v1_malay/shopasia_faq.txt} +0 -0
  11. knowledge_base/{shopee_faq.txt β†’ v1_malay/shopee_faq.txt} +0 -0
  12. knowledge_base/v2_multilingual/01_platform_and_account_en.md +123 -0
  13. knowledge_base/v2_multilingual/01_platform_and_account_my.md +123 -0
  14. knowledge_base/v2_multilingual/02_shopping_guide_en.md +105 -0
  15. knowledge_base/v2_multilingual/02_shopping_guide_my.md +105 -0
  16. knowledge_base/v2_multilingual/03_shipping_and_delivery_en.md +101 -0
  17. knowledge_base/v2_multilingual/03_shipping_and_delivery_my.md +101 -0
  18. knowledge_base/v2_multilingual/04_returns_and_refunds_en.md +82 -0
  19. knowledge_base/v2_multilingual/04_returns_and_refunds_my.md +83 -0
  20. knowledge_base/v2_multilingual/05_rewards_and_promotions_en.md +100 -0
  21. knowledge_base/v2_multilingual/05_rewards_and_promotions_my.md +100 -0
  22. knowledge_base/v2_multilingual/06_seller_guide_basics_en.md +124 -0
  23. knowledge_base/v2_multilingual/06_seller_guide_basics_my.md +124 -0
  24. knowledge_base/v2_multilingual/07_seller_guide_advanced_en.md +153 -0
  25. knowledge_base/v2_multilingual/07_seller_guide_advanced_my.md +153 -0
  26. knowledge_base/v2_multilingual/08_platform_policies_en.md +103 -0
  27. knowledge_base/v2_multilingual/08_platform_policies_my.md +103 -0
  28. knowledge_base/v2_multilingual/09_customer_support_and_disputes_en.md +99 -0
  29. knowledge_base/v2_multilingual/09_customer_support_and_disputes_my.md +99 -0
  30. requirements.txt +0 -0
  31. v1_malay_selfhosted/.gitattributes +38 -0
  32. v1_malay_selfhosted/.gitignore +144 -0
  33. 01-FineTuning-QA.ipynb β†’ v1_malay_selfhosted/01-FineTuning-QA.ipynb +0 -0
  34. 02-RAG-Pipeline.ipynb β†’ v1_malay_selfhosted/02-RAG-Pipeline.ipynb +0 -0
  35. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/Pasted Content.txt +0 -0
  36. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/create_squad_format.py +0 -0
  37. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/lazada_content.md +0 -0
  38. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/lazada_content_malay .txt +0 -0
  39. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/lazada_content_malay.md +0 -0
  40. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/organized_content.md +0 -0
  41. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/qa_pairs_malay.md +0 -0
  42. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/shopee_content.md +0 -0
  43. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/shopee_content_malay -.txt +0 -0
  44. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/shopee_content_malay.md +0 -0
  45. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/squad_format_qa_pairs.csv +0 -0
  46. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/squad_format_qa_pairs.json +0 -0
  47. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/todo.md +0 -0
  48. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/translate_content.py +0 -0
  49. {2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/translated_content.md +0 -0
  50. {Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/Source Selection and QA Pair Creation Guide}/Pasted Content.txt +0 -0
.gitignore CHANGED
@@ -12,133 +12,10 @@ __pycache__/
12
  # Jupyter Notebook checkpoints
13
  .ipynb_checkpoints/
14
 
15
- # Distribution / packaging
16
- *.egg-info/
17
- dist/
18
- build/
19
- wheels/
20
- *.tar.gz
21
- *.whl
22
-
23
- # Logs and reports
24
- *.log
25
- *.html # Ignore generated reports like profiling
26
-
27
- # IDE / OS specific
28
- .vscode/
29
- .idea/
30
- *.DS_Store
31
- Thumbs.db
32
-
33
- # Output directories / Large Files (IGNORED)
34
- malay-qa-model-finetuned/ # Ignore large saved fine-tuned model
35
- models/ # Generic models folder often ignored
36
- # *.joblib # Ignore generic joblib files (like from P1)
37
- # *.pkl # Ignore generic pickle files
38
- .hf_cache_st/ # Ignore downloaded embedding model cache
39
- .cache_st/ # Ignore downloaded embedding model cache (alternative name used)
40
- .dvc/cache # Ignore DVC cache if DVC is used
41
-
42
- # --- Files/Folders to *KEEP* for P3 Deployment ---
43
- # Ensure these lines are COMMENTED OUT or DELETED:
44
- # faiss_malay_ecommerce_kb_index/
45
- # knowledge_base/
46
- # squad_format_qa_pairs.json # Keep the source data JSON
47
- # ecommerce_malay_qa.csv # Keep source data CSV (optional if JSON is primary)
48
-
49
- # --- Other Ignores ---
50
- # *.zip # Keep commented if you might commit small zip files
51
- # *.png # Keep commented if you need specific image assets in repo
52
- # *.jpg # Keep commented if you need specific image assets in repo
53
- # app_old.py # Good to ignore backups
54
- # app_v*.py # Good to ignore backups
55
-
56
- # Add these cache folders
57
- .cache_st/
58
- .hf_cache_st/
59
- .hf_cache_st_test/
60
-
61
- # Add model output
62
- malay-qa-model-finetuned/
63
-
64
- # Add archives and specific media/temp files if not covered by *.ext
65
- *.zip
66
- *.png
67
- *.jpg
68
- Untitled.ipynb
69
- app_old.py
70
- app_v*.py # Covers app_v2.py, app_v3.2.py etc.
71
- drive1.png
72
- ecommerce_malay_qa.csv # Ignore CSV if JSON is source
73
- first*.png
74
- hf*.png
75
- inspo*.png
76
- latest*.png
77
- new*.png
78
- revolab*.png
79
- streamlit*.png
80
- ui*.jpg
81
- uiux*.png
82
- app_v3.py
83
- app_new.py
84
-
85
- # Ensure these are still ignored
86
  p3env/
87
  __pycache__/
88
  *.pyc
89
- # Ensure these are NOT ignored (remove lines if present)
90
- # faiss_malay_ecommerce_kb_index/
91
- # knowledge_base/
92
-
93
- # Ignore old app versions/duplicates
94
- app2.py
95
- app_v*.py
96
- *_needtofix.py
97
- *_testing.py
98
-
99
- # Ignore temporary/debug scripts
100
- debug_*.py
101
- custom_embedder.py # Assuming this was temporary
102
-
103
- # Ignore copies
104
- *Copy.txt
105
- *copy.txt
106
-
107
- # Ignore other potentially unwanted files/folders
108
- # Add anything else specific here
109
-
110
- # --- Ensure these are NOT ignored ---
111
- # Make sure lines starting with '#' are before these if they existed:
112
- # !faiss_malay_ecommerce_kb_index/ # Example if it was ignored before
113
- # !knowledge_base/
114
-
115
- # Ignore temporary/debug scripts
116
- # debug_*.py
117
- # custom_embedder.py
118
-
119
- # Ignore copies
120
- *Copy.txt
121
-
122
- # Ignore old app versions if any (based on previous issues)
123
- app_v*.py
124
- *_testing.py
125
- app2.py # If this was an old version
126
-
127
-
128
- # --- Ensure essential files/folders are NOT ignored ---
129
- !app.py
130
- !reindex.py
131
- !01-FineTuning-QA.ipynb
132
- !02-RAG-Pipeline.ipynb
133
- !requirements.txt
134
- !README.md
135
- !faiss_malay_ecommerce_kb_index/
136
- !knowledge_base/
137
- !squad_format_qa_pairs.json
138
- !ecommerce_malay_qa.csv
139
- #.gitattributes # Usually added by LFS, not manual ignore
140
-
141
- /p3env2/
142
- p3env2/
143
 
144
- .mailmap
 
 
12
  # Jupyter Notebook checkpoints
13
  .ipynb_checkpoints/
14
 
15
+ # Python virtual environment
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  p3env/
17
  __pycache__/
18
  *.pyc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ # Local secret file for v2
21
+ .env
README.md CHANGED
@@ -1,16 +1,23 @@
 
 
 
 
1
  ---
2
- title: Bot Bantuan E-Dagang (Malay QA)
3
- emoji: πŸ›οΈπŸ‡²πŸ‡Ύ
4
- colorFrom: blue
5
- colorTo: indigo
6
- sdk: streamlit
7
- app_file: app_v3.py
8
- pinned: false
9
- # Add python_version if needed, e.g.:
10
- # python_version: 3.11
 
11
  ---
12
 
13
- # Malay E-commerce QA Bot (Project 3)
 
 
14
 
15
- Simple RAG demo using LangChain, FAISS, MiniLM, and MT5-Small.
16
- Knowledge base focuses on Lazada/Shopee policies.
 
1
+ # Advanced Conversational AI for E-Commerce: V1 vs. V2
2
+
3
+ This repository showcases the evolution of a RAG-based chatbot, demonstrating a clear progression from a self-hosted prototype (v1) to a professional, API-driven conversational AI (v2).
4
+
5
  ---
6
+
7
+ ## V2: The Professional Multilingual Assistant (API-Driven)
8
+
9
+ This version represents a modern, production-ready system built on a decoupled architecture with full support for English and Malay.
10
+
11
+ * **Architecture (`/v2_multilingual_api`):**
12
+ * **Backend:** A secure FastAPI server implementing an advanced **Retrieve-and-Re-rank** pipeline. It uses multilingual models, Pinecone for vector storage, and the Google Gemini API for generation.
13
+ * **Frontend:** A responsive Streamlit chat interface.
14
+ * **Knowledge Base:** `/knowledge_base/v2_multilingual`
15
+
16
  ---
17
 
18
+ ## V1: The Self-Hosted Prototype (Malay-Only)
19
+
20
+ This version is the original project, serving as a technical baseline.
21
 
22
+ * **Architecture (`/v1_malay_selfhosted`):** A single Streamlit application using a self-hosted `mt5-small` model and a local FAISS index.
23
+ * **Knowledge Base:** `/knowledge_base/v1_malay`
debug_retriever.py DELETED
@@ -1,99 +0,0 @@
1
- # --- debug_retriever.py ---
2
- import os
3
- import torch
4
- from langchain_huggingface import HuggingFaceEmbeddings
5
- from langchain_community.vectorstores import FAISS
6
- import time
7
- import numpy as np # Keep imports needed
8
- # from sklearn.metrics.pairwise import cosine_similarity # Uncomment if using direct similarity check
9
-
10
- # --- Configuration ---
11
- INDEX_PATH = "faiss_malay_ecommerce_kb_index"
12
- EMBEDDING_MODEL_NAME = "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2" # Back to MiniLM
13
- SEARCH_TYPE = "similarity" # Testing Similarity Search
14
- SEARCH_K = 5
15
-
16
- test_queries = [
17
- "Status Penghantaran",
18
- "Berapa lama tempoh pemulangan LazMall?",
19
- "Adakah produk ini original?",
20
- "Lazmall",
21
- "Hi"
22
- ]
23
-
24
- print("--- Starting Retriever Debug Script ---")
25
-
26
- # --- Load Embedding Model ---
27
- print(f"\nLoading embedding model: {EMBEDDING_MODEL_NAME}...")
28
- try:
29
- device = 'cuda' if torch.cuda.is_available() else 'cpu'
30
- embeddings = HuggingFaceEmbeddings(
31
- model_name=EMBEDDING_MODEL_NAME,
32
- model_kwargs={'device': device}
33
- )
34
- print(f">> Embedding model loaded on {device}.")
35
- except Exception as e:
36
- print(f"FATAL: Error loading embedding model: {e}")
37
- exit()
38
-
39
- # --- Load FAISS Index ---
40
- print(f"\nLoading FAISS index from: {INDEX_PATH}...")
41
- vector_store = None # Initialize vector_store
42
- if not os.path.exists(INDEX_PATH):
43
- print(f"FATAL: FAISS index not found at {INDEX_PATH}. Run reindex.py first!")
44
- exit()
45
- try:
46
- vector_store = FAISS.load_local(
47
- INDEX_PATH,
48
- embeddings,
49
- allow_dangerous_deserialization=True
50
- )
51
- print(f">> FAISS index loaded. Contains {vector_store.index.ntotal} vectors.")
52
- except Exception as e:
53
- print(f"FATAL: Error loading FAISS index: {e}")
54
- exit()
55
-
56
- # --- Create Retriever ---
57
- print(f"\nCreating retriever (Type: {SEARCH_TYPE}, k: {SEARCH_K})...")
58
- retriever = None # <<< Initialize retriever to None >>>
59
- if vector_store: # Ensure vector_store loaded successfully
60
- try:
61
- retriever = vector_store.as_retriever( # <<< Define retriever here >>>
62
- search_type=SEARCH_TYPE,
63
- search_kwargs={'k': SEARCH_K}
64
- )
65
- print(f">> Retriever created (Type: {SEARCH_TYPE}, k: {SEARCH_K}).") # Correct indentation
66
- except Exception as e:
67
- print(f"FATAL: Error creating retriever: {e}")
68
- # No exit() here yet, let the check below handle it
69
-
70
- # --- Check if Retriever Creation Succeeded BEFORE Testing ---
71
- if not retriever: # <<< Add this check >>>
72
- print("\nFATAL: Retriever object was not created successfully. Exiting.")
73
- exit()
74
-
75
- # --- Test Queries ---
76
- print("\n--- Testing Queries ---")
77
- for query in test_queries:
78
- print(f"\n>>> Testing Query: '{query}'")
79
- try:
80
- start_time = time.time()
81
- # Now 'retriever' is guaranteed to exist if we reached here
82
- retrieved_docs = retriever.invoke(query)
83
- end_time = time.time()
84
- print(f" Time taken: {end_time - start_time:.2f} seconds")
85
- print(f" Retrieved {len(retrieved_docs)} documents.")
86
-
87
- if retrieved_docs:
88
- for i, doc in enumerate(retrieved_docs):
89
- print(f"\n --- Doc {i+1} ---")
90
- print(f" Source: {doc.metadata.get('source', 'N/A')}")
91
- print(f" Content Snippet: {doc.page_content[:250]}...")
92
- else:
93
- print(" !!! No documents retrieved !!!")
94
-
95
- except Exception as e:
96
- # This except block should now only catch errors from .invoke()
97
- print(f" ERROR running retriever invoke() for query '{query}': {e}")
98
-
99
- print("DEBUG SCRIPTED FINISHED")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
knowledge_base/{15 April KB update.txt β†’ v1_malay/15 April KB update.txt} RENAMED
File without changes
knowledge_base/{23 April KB update.txt β†’ v1_malay/23 April KB update.txt} RENAMED
File without changes
knowledge_base/{Berapa lama tempoh pemulangan untuk LazMall.txt β†’ v1_malay/Berapa lama tempoh pemulangan untuk LazMall.txt} RENAMED
File without changes
knowledge_base/{KB - Panduan E-dagang Malaysia (Bahasa Melayu).txt β†’ v1_malay/KB - Panduan E-dagang Malaysia (Bahasa Melayu).txt} RENAMED
File without changes
knowledge_base/{lazada_faq.txt β†’ v1_malay/lazada_faq.txt} RENAMED
File without changes
knowledge_base/{shipping_status.txt β†’ v1_malay/shipping_status.txt} RENAMED
File without changes
knowledge_base/{shopasia_faq.txt β†’ v1_malay/shopasia_faq.txt} RENAMED
File without changes
knowledge_base/{shopee_faq.txt β†’ v1_malay/shopee_faq.txt} RENAMED
File without changes
knowledge_base/v2_multilingual/01_platform_and_account_en.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Platform and Account Management
2
+
3
+ Welcome to AuraCart! This document provides a comprehensive guide to managing your AuraCart account, from creation to security best practices.
4
+
5
+ ## 1. Account Creation
6
+
7
+ Creating an AuraCart account is quick, free, and opens up a world of shopping possibilities.
8
+
9
+ ### How to Create an AuraCart Account
10
+
11
+ To create a new account:
12
+ 1. **Download the AuraCart App** from the App Store (iOS) or Google Play Store (Android), or visit the AuraCart website (www.auracart.com).
13
+ 2. On the homepage, click on "Sign Up" or "Register".
14
+ 3. You will be prompted to provide:
15
+ * Your mobile number (for verification) or email address.
16
+ * A secure password.
17
+ 4. A One-Time Password (OTP) will be sent to your registered mobile number or email address for verification. Enter this OTP into the AuraCart platform.
18
+ 5. Once verified, your AuraCart account is successfully created. You can now start exploring AuraMall and other features.
19
+
20
+ ### Information Required for Registration
21
+
22
+ * **Mobile Number or Email Address:** Essential for account verification and communication.
23
+ * **Password:** Must be at least 8 characters long, including a mix of uppercase and lowercase letters, numbers, and symbols for strong security.
24
+ * **Optional Information:** You may be asked for your name during initial setup or when completing your profile later.
25
+
26
+ ## 2. Login Procedures
27
+
28
+ Accessing your AuraCart account is straightforward and secure.
29
+
30
+ ### How to Log In
31
+
32
+ 1. **Open the AuraCart App** or visit the AuraCart website.
33
+ 2. Click on "Login" or "Sign In".
34
+ 3. Enter your registered mobile number/email address and password.
35
+ 4. Click "Log In".
36
+
37
+ ### Troubleshooting Login Issues
38
+
39
+ * **Incorrect Password:** If you receive an "incorrect password" error, double-check your input or proceed with a password reset (see section 3).
40
+ * **Incorrect Username/Email:** Ensure you are using the mobile number or email address registered with your AuraCart account.
41
+ * **Account Locked:** For security reasons, multiple failed login attempts may temporarily lock your account. Wait for the specified time or contact AuraCart Customer Support.
42
+ * **No OTP Received:** Check your spam/junk folder for emails, or ensure your mobile number is correctly entered. You may request to resend the OTP after a short waiting period.
43
+
44
+ ## 3. Password Resets
45
+
46
+ If you forget your password, you can easily reset it to regain access to your account.
47
+
48
+ ### How to Reset Your Password
49
+
50
+ 1. On the AuraCart login page, click on "Forgot Password?".
51
+ 2. Enter the mobile number or email address associated with your AuraCart account.
52
+ 3. A verification code (OTP) will be sent to your registered mobile number or email.
53
+ 4. Enter the OTP into the provided field.
54
+ 5. You will then be prompted to create a new password. Choose a strong, unique password that you haven't used before.
55
+ 6. Confirm your new password and click "Reset Password". Your password will be updated immediately.
56
+
57
+ ### Password Security Recommendations
58
+
59
+ * **Strong Passwords:** Always use a combination of uppercase and lowercase letters, numbers, and symbols.
60
+ * **Unique Passwords:** Do not reuse passwords across multiple online services.
61
+ * **Regular Updates:** Consider changing your password periodically, especially if you suspect any unauthorized access.
62
+
63
+ ## 4. Profile Management
64
+
65
+ Managing your profile allows you to keep your personal information, shipping addresses, and payment methods up-to-date for a seamless shopping experience.
66
+
67
+ ### Updating Personal Information
68
+
69
+ 1. Log in to your AuraCart account.
70
+ 2. Navigate to "My Account" or your profile icon.
71
+ 3. Select "Profile Settings" or "Personal Information".
72
+ 4. You can update details such as:
73
+ * **Name:** Your preferred name.
74
+ * **Email Address:** Your primary email for communications.
75
+ * **Mobile Number:** Your primary contact number (may require re-verification for security).
76
+ 5. Save changes after updating.
77
+
78
+ ### Managing Shipping Addresses
79
+
80
+ * **Adding a New Address:**
81
+ 1. Go to "My Account" > "Addresses".
82
+ 2. Click "Add New Address".
83
+ 3. Enter the recipient's name, full street address, landmark (optional), city, state/province, postal code, and contact number.
84
+ 4. You can set this as your default shipping address.
85
+ * **Editing or Deleting an Address:**
86
+ 1. From "My Account" > "Addresses", select the address you wish to modify.
87
+ 2. Click "Edit" to update details or "Delete" to remove it.
88
+ * **Default Address:** Set a default address for faster checkout. You can always change it during the checkout process.
89
+
90
+ ### Managing Payment Methods
91
+
92
+ AuraCart supports various secure payment methods, including AuraWallet.
93
+
94
+ 1. Go to "My Account" > "Payment Methods" or "AuraWallet".
95
+ 2. You can:
96
+ * **Link AuraWallet:** Connect and manage your AuraWallet for seamless transactions and earning AuraCoins.
97
+ * **Add Credit/Debit Cards:** Securely save your card details for future purchases (card verification may be required).
98
+ * **Manage Bank Accounts:** Link bank accounts for direct transfers if applicable for certain services.
99
+ 3. Your payment information is encrypted and stored securely by AuraCart.
100
+
101
+ ## 5. Account Security Best Practices
102
+
103
+ AuraCart is committed to protecting your account, but your vigilance is key.
104
+
105
+ ### Strong Passwords and Two-Factor Authentication (2FA)
106
+
107
+ * **Create Strong, Unique Passwords:** As mentioned in Section 3, use a mix of characters and avoid common words.
108
+ * **Enable 2FA:** AuraCart strongly recommends enabling Two-Factor Authentication (2FA) for an added layer of security. This requires a verification code (sent to your phone or email) in addition to your password when logging in from a new device. You can enable 2FA in your "Security Settings" under "My Account".
109
+
110
+ ### Recognizing and Avoiding Phishing Attempts
111
+
112
+ * **Be Skeptical of Suspicious Emails/Messages:** AuraCart will never ask for your password, OTP, or full credit card details via email or unsolicited messages.
113
+ * **Check Sender and Links:** Always verify the sender's email address and hover over links before clicking to ensure they lead to legitimate AuraCart domains (e.g., auracart.com).
114
+ * **Report Suspected Phishing:** If you receive a suspicious communication purporting to be from AuraCart, please report it immediately to AuraCart Customer Support.
115
+
116
+ ### Protecting Your Devices
117
+
118
+ * **Keep Software Updated:** Ensure your operating system, web browser, and antivirus software are up-to-date on all devices used to access AuraCart.
119
+ * **Secure Your Wi-Fi:** Use a strong, unique password for your home Wi-Fi network. Avoid accessing your account on public, unsecured Wi-Fi networks.
120
+ * **Log Out After Use:** Especially on shared or public computers, always log out of your AuraCart account when you are finished.
121
+ * **Monitor Account Activity:** Regularly check your order history and AuraWallet transactions for any suspicious activity. If you notice anything unusual, contact AuraCart Customer Support immediately.
122
+
123
+ By following these guidelines, you can ensure a secure and smooth experience on AuraCart.
knowledge_base/v2_multilingual/01_platform_and_account_my.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pengurusan Platform dan Akaun
2
+
3
+ Selamat datang ke AuraCart! Dokumen ini menyediakan panduan komprehensif untuk menguruskan akaun AuraCart anda, daripada penciptaan hingga amalan terbaik keselamatan.
4
+
5
+ ## 1. Penciptaan Akaun
6
+
7
+ Mencipta akaun AuraCart adalah pantas, percuma, dan membuka dunia kemungkinan membeli-belah.
8
+
9
+ ### Cara Membuat Akaun AuraCart
10
+
11
+ Untuk membuat akaun baharu:
12
+ 1. **Muat Turun Aplikasi AuraCart** dari App Store (iOS) atau Google Play Store (Android), atau lawati laman web AuraCart (www.auracart.com).
13
+ 2. Di halaman utama, klik "Sign Up" atau "Register".
14
+ 3. Anda akan diminta untuk menyediakan:
15
+ * Nombor telefon bimbit anda (untuk pengesahan) atau alamat e-mel.
16
+ * Kata laluan yang selamat.
17
+ 4. Kata Laluan Sekali Sahaja (OTP) akan dihantar ke nombor telefon bimbit atau alamat e-mel berdaftar anda untuk pengesahan. Masukkan OTP ini ke dalam platform AuraCart.
18
+ 5. Setelah disahkan, akaun AuraCart anda berjaya dicipta. Anda kini boleh mula meneroka AuraMall dan ciri-ciri lain.
19
+
20
+ ### Maklumat Diperlukan untuk Pendaftaran
21
+
22
+ * **Nombor Telefon Bimbit atau Alamat E-mel:** Penting untuk pengesahan akaun dan komunikasi.
23
+ * **Kata Laluan:** Mesti sekurang-kurangnya 8 aksara panjang, termasuk campuran huruf besar dan huruf kecil, nombor, dan simbol untuk keselamatan yang kuat.
24
+ * **Maklumat Pilihan:** Anda mungkin diminta untuk nama anda semasa persediaan awal atau apabila melengkapkan profil anda kemudian.
25
+
26
+ ## 2. Prosedur Log Masuk
27
+
28
+ Mengakses akaun AuraCart anda adalah mudah dan selamat.
29
+
30
+ ### Cara Log Masuk
31
+
32
+ 1. **Buka Aplikasi AuraCart** atau lawati laman web AuraCart.
33
+ 2. Klik "Login" atau "Sign In".
34
+ 3. Masukkan nombor telefon bimbit/alamat e-mel berdaftar anda dan kata laluan.
35
+ 4. Klik "Log In".
36
+
37
+ ### Penyelesaian Masalah Log Masuk
38
+
39
+ * **Kata Laluan Salah:** Jika anda menerima ralat "kata laluan salah", semak semula input anda atau teruskan dengan penetapan semula kata laluan (lihat seksyen 3).
40
+ * **Nama Pengguna/E-mel Salah:** Pastikan anda menggunakan nombor telefon bimbit atau alamat e-mel yang didaftarkan dengan akaun AuraCart anda.
41
+ * **Akaun Terkunci:** Atas sebab keselamatan, beberapa percubaan log masuk yang gagal mungkin mengunci akaun anda sementara. Tunggu masa yang ditetapkan atau hubungi Sokongan Pelanggan AuraCart.
42
+ * **Tiada OTP Diterima:** Semak folder spam/junk anda untuk e-mel, atau pastikan nombor telefon bimbit anda dimasukkan dengan betul. Anda boleh meminta untuk menghantar semula OTP selepas tempoh menunggu yang singkat.
43
+
44
+ ## 3. Penetapan Semula Kata Laluan
45
+
46
+ Jika anda terlupa kata laluan anda, anda boleh menetapkannya semula dengan mudah untuk mendapatkan semula akses kepada akaun anda.
47
+
48
+ ### Cara Menetapkan Semula Kata Laluan Anda
49
+
50
+ 1. Di halaman log masuk AuraCart, klik "Forgot Password?".
51
+ 2. Masukkan nombor telefon bimbit atau alamat e-mel yang dikaitkan dengan akaun AuraCart anda.
52
+ 3. Kod pengesahan (OTP) akan dihantar ke nombor telefon bimbit atau e-mel berdaftar anda.
53
+ 4. Masukkan OTP ke dalam medan yang disediakan.
54
+ 5. Anda kemudian akan diminta untuk mencipta kata laluan baharu. Pilih kata laluan yang kuat dan unik yang belum pernah anda gunakan sebelum ini.
55
+ 6. Sahkan kata laluan baharu anda dan klik "Reset Password". Kata laluan anda akan dikemas kini serta-merta.
56
+
57
+ ### Cadangan Keselamatan Kata Laluan
58
+
59
+ * **Kata Laluan Kuat:** Sentiasa gunakan gabungan huruf besar dan huruf kecil, nombor, dan simbol.
60
+ * **Kata Laluan Unik:** Jangan gunakan semula kata laluan di pelbagai perkhidmatan dalam talian.
61
+ * **Kemas Kini Berkala:** Pertimbangkan untuk menukar kata laluan anda secara berkala, terutamanya jika anda mengesyaki sebarang akses tanpa kebenaran.
62
+
63
+ ## 4. Pengurusan Profil
64
+
65
+ Menguruskan profil anda membolehkan anda memastikan maklumat peribadi, alamat penghantaran, dan kaedah pembayaran anda sentiasa terkini untuk pengalaman membeli-belah yang lancar.
66
+
67
+ ### Mengemas Kini Maklumat Peribadi
68
+
69
+ 1. Log masuk ke akaun AuraCart anda.
70
+ 2. Navigasi ke "My Account" atau ikon profil anda.
71
+ 3. Pilih "Profile Settings" atau "Personal Information".
72
+ 4. Anda boleh mengemas kini butiran seperti:
73
+ * **Nama:** Nama pilihan anda.
74
+ * **Alamat E-mel:** E-mel utama anda untuk komunikasi.
75
+ * **Nombor Telefon Bimbit:** Nombor hubungan utama anda (mungkin memerlukan pengesahan semula untuk keselamatan).
76
+ 5. Simpan perubahan selepas mengemas kini.
77
+
78
+ ### Menguruskan Alamat Penghantaran
79
+
80
+ * **Menambah Alamat Baharu:**
81
+ 1. Pergi ke "My Account" > "Addresses".
82
+ 2. Klik "Add New Address".
83
+ 3. Masukkan nama penerima, alamat jalan penuh, mercu tanda (pilihan), bandar, negeri/provinsi, kod pos, dan nombor hubungan.
84
+ 4. Anda boleh menetapkan ini sebagai alamat penghantaran lalai anda.
85
+ * **Mengedit atau Memadam Alamat:**
86
+ 1. Dari "My Account" > "Addresses", pilih alamat yang ingin anda ubah suai.
87
+ 2. Klik "Edit" untuk mengemas kini butiran atau "Delete" untuk memadamnya.
88
+ * **Alamat Lalai:** Tetapkan alamat lalai untuk pembayaran yang lebih pantas. Anda sentiasa boleh menukarnya semasa proses pembayaran.
89
+
90
+ ### Menguruskan Kaedah Pembayaran
91
+
92
+ AuraCart menyokong pelbagai kaedah pembayaran yang selamat, termasuk AuraWallet.
93
+
94
+ 1. Pergi ke "My Account" > "Payment Methods" atau "AuraWallet".
95
+ 2. Anda boleh:
96
+ * **Pautkan AuraWallet:** Sambungkan dan uruskan AuraWallet anda untuk transaksi yang lancar dan pendapatan AuraCoins.
97
+ * **Tambah Kad Kredit/Debit:** Simpan butiran kad anda dengan selamat untuk pembelian masa depan (pengesahan kad mungkin diperlukan).
98
+ * **Urus Akaun Bank:** Pautkan akaun bank untuk pemindahan langsung jika berkenaan untuk perkhidmatan tertentu.
99
+ 3. Maklumat pembayaran anda disulitkan dan disimpan dengan selamat oleh AuraCart.
100
+
101
+ ## 5. Amalan Terbaik Keselamatan Akaun
102
+
103
+ AuraCart komited untuk melindungi akaun anda, tetapi kewaspadaan anda adalah kunci.
104
+
105
+ ### Kata Laluan Kuat dan Pengesahan Dua Faktor (2FA)
106
+
107
+ * **Cipta Kata Laluan Kuat, Unik:** Seperti yang dinyatakan dalam Seksyen 3, gunakan gabungan aksara dan elakkan perkataan biasa.
108
+ * **Dayakan 2FA:** AuraCart sangat mengesyorkan mendayakan Pengesahan Dua Faktor (2FA) untuk lapisan keselamatan tambahan. Ini memerlukan kod pengesahan (dihantar ke telefon atau e-mel anda) sebagai tambahan kepada kata laluan anda apabila log masuk dari peranti baharu. Anda boleh mendayakan 2FA dalam "Security Settings" di bawah "My Account" anda.
109
+
110
+ ### Mengenali dan Mengelak Cubaan Pancingan Data (Phishing)
111
+
112
+ * **Berhati-hati dengan E-mel/Mesej Mencurigakan:** AuraCart tidak akan sekali-kali meminta kata laluan, OTP, atau butiran kad kredit penuh anda melalui e-mel atau mesej yang tidak diminta.
113
+ * **Semak Penghantar dan Pautan:** Sentiasa sahkan alamat e-mel penghantar dan layangkan kursor ke atas pautan sebelum mengklik untuk memastikan ia menuju ke domain AuraCart yang sah (contohnya, auracart.com).
114
+ * **Laporkan Pancingan Data yang Disyaki:** Jika anda menerima komunikasi mencurigakan yang mendakwa dari AuraCart, sila laporkannya dengan segera kepada Sokongan Pelanggan AuraCart.
115
+
116
+ ### Melindungi Peranti Anda
117
+
118
+ * **Kekalkan Perisian Dikemas Kini:** Pastikan sistem pengendalian, pelayar web, dan perisian antivirus anda sentiasa terkini pada semua peranti yang digunakan untuk mengakses AuraCart.
119
+ * **Selamatkan Wi-Fi Anda:** Gunakan kata laluan yang kuat dan unik untuk rangkaian Wi-Fi rumah anda. Elakkan mengakses akaun anda di rangkaian Wi-Fi awam yang tidak selamat.
120
+ * **Log Keluar Selepas Penggunaan:** Terutamanya pada komputer kongsi atau awam, sentiasa log keluar dari akaun AuraCart anda apabila anda selesai.
121
+ * **Pantau Aktiviti Akaun:** Sentiasa semak sejarah pesanan dan transaksi AuraWallet anda untuk sebarang aktiviti yang mencurigakan. Jika anda melihat sesuatu yang luar biasa, hubungi Sokongan Pelanggan AuraCart dengan segera.
122
+
123
+ Dengan mengikuti garis panduan ini, anda boleh memastikan pengalaman yang selamat dan lancar di AuraCart.
knowledge_base/v2_multilingual/02_shopping_guide_en.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Shopping Guide
2
+
3
+ Welcome to AuraCart's comprehensive shopping guide! This document will walk you through the entire process of finding products, managing your shopping cart, applying discounts, and completing your purchase on AuraMall.
4
+
5
+ ## 1. How to Search for Products
6
+
7
+ Finding what you need on AuraCart is easy and intuitive.
8
+
9
+ ### Using the Search Bar
10
+
11
+ * **Location:** The search bar is prominently located at the top of the AuraCart website or app interface.
12
+ * **Keywords:** Enter relevant keywords for the product you are looking for (e.g., "smartphone," "wireless headphones," "men's t-shirt").
13
+ * **Brand Names:** You can also search directly by brand name (e.g., "Samsung," "Nike").
14
+ * **Product ID/SKU:** If you have a specific product ID or SKU, you can use that for precise searches.
15
+
16
+ ### Browsing by Categories
17
+
18
+ * **Access Categories:** On the AuraCart homepage or navigation menu, you will find a list of main product categories (e.g., Electronics, Fashion, Home & Living, Groceries).
19
+ * **Sub-Categories:** Clicking on a main category will often reveal sub-categories to help you narrow down your search even further (e.g., Electronics > Mobile Phones > Android Phones).
20
+
21
+ ### Applying Filters for Refined Search
22
+
23
+ Once you have searched or navigated to a category, you can refine your results using various filters:
24
+ * **Price Range:** Set a minimum and maximum price.
25
+ * **Brand:** Filter by specific brands available on AuraMall.
26
+ * **Rating:** Show products with a certain average customer rating.
27
+ * **Seller:** Filter by specific sellers or official stores.
28
+ * **Shipping Options:** Filter by local or international shipping, or products eligible for fast delivery.
29
+ * **Promotions:** See products eligible for specific promotions or discounts.
30
+ * **Features/Specifications:** For electronics or specific items, filter by color, size, capacity, etc.
31
+
32
+ ## 2. Using the Shopping Cart
33
+
34
+ The shopping cart is where you collect items you intend to purchase.
35
+
36
+ ### Adding Items to Cart
37
+
38
+ 1. **Product Page:** Once you've found an item you want to buy, navigate to its product details page.
39
+ 2. **Select Options:** If applicable, choose variations like size, color, or quantity.
40
+ 3. **"Add to Cart" Button:** Click the "Add to Cart" button. A confirmation message will usually appear, and the item will be added to your cart.
41
+ 4. **Continue Shopping or View Cart:** You can continue browsing AuraMall or proceed to view your cart immediately.
42
+
43
+ ### Reviewing and Modifying Cart Items
44
+
45
+ * **Accessing Your Cart:** Click on the shopping cart icon (usually located at the top right corner of the page/app) to view your cart contents.
46
+ * **Quantity Adjustment:** Change the quantity of any item by using the "+" and "-" buttons or directly inputting the desired number.
47
+ * **Removing Items:** To remove an item, click the "Remove" or "Delete" button next to it.
48
+ * **Saving for Later:** Some items may have an option to "Save for Later," which moves them out of your immediate cart but keeps them saved for future consideration.
49
+
50
+ ## 3. Applying Promotional Vouchers and Discounts
51
+
52
+ AuraCart offers various ways to save money on your purchases.
53
+
54
+ ### How to Apply a Voucher/Promo Code
55
+
56
+ 1. **Voucher Collection:** Vouchers can often be collected directly from promotion banners on the AuraCart homepage, product pages, or seller stores.
57
+ 2. **During Checkout:** When you proceed to the checkout page from your shopping cart, you will see a section for "Voucher Code" or "Apply Promo Code."
58
+ 3. **Enter Code:** If you have a specific code, type it accurately into the field and click "Apply."
59
+ 4. **Select Collected Voucher:** If you have collected a voucher, it will usually appear as an option to select from a list. Choose the voucher you wish to use.
60
+ 5. **Verify Discount:** The discount will be applied to your total, and you will see the updated price before confirming your order.
61
+
62
+ ### Voucher Terms and Conditions
63
+
64
+ * **Eligibility:** Vouchers often have specific eligibility criteria, such as minimum spend, specific products/categories, or certain payment methods (e.g., AuraWallet exclusive).
65
+ * **Expiry Date:** All vouchers have an expiry date. Ensure you use them before they expire.
66
+ * **Usage Limit:** Vouchers may be limited to one per customer or one per transaction.
67
+ * **Non-Stackable:** Vouchers are generally not stackable, meaning you can typically only use one voucher per order. AuraCart automatically applies the best available discount if multiple are collected.
68
+ * **Refunds:** If an order purchased with a voucher is cancelled or returned, the voucher amount is usually not refunded, but the paid amount will be. Check specific voucher terms.
69
+
70
+ ## 4. The Complete Checkout Process
71
+
72
+ Once you're ready to buy, the checkout process is streamlined for convenience.
73
+
74
+ ### Step 1: Review Your Order
75
+
76
+ * After clicking "Checkout" from your shopping cart, you will be taken to an order summary page.
77
+ * **Verify Items and Quantities:** Double-check all items and their quantities.
78
+ * **Shipping Address:** Confirm your default shipping address or select/add a new one. Ensure all details are correct to avoid delivery issues.
79
+ * **Select Shipping Option:** Choose your preferred shipping method if multiple options are available (e.g., standard, express).
80
+
81
+ ### Step 2: Select Payment Method
82
+
83
+ AuraCart offers a variety of secure payment options:
84
+
85
+ * **AuraWallet:** For fast, seamless payments and potential exclusive discounts/AuraCoin earning opportunities. Ensure your AuraWallet has sufficient balance or is linked to a top-up source.
86
+ * **Credit/Debit Card:** Enter your card details securely. You may have the option to save your card for future purchases (encrypted).
87
+ * **Bank Transfer:** Follow instructions for direct bank transfers; this method may require manual verification and take longer for order confirmation.
88
+ * **Cash on Delivery (COD):** Available for selected products and locations. Please have the exact amount ready upon delivery.
89
+ * **Installment Plans:** For higher-value items, AuraCart may offer installment options through partnered banks/providers.
90
+
91
+ ### Step 3: Apply Vouchers and AuraCoins
92
+
93
+ * On the checkout page, locate the "Voucher" or "AuraCoins" section.
94
+ * **Voucher:** Select or input your desired voucher code (as detailed in section 3).
95
+ * **AuraCoins:** If you have sufficient AuraCoins, you will see an option to apply them to your purchase. You can choose to use all available AuraCoins or a specific amount. Each AuraCoin has a specific monetary value which will be displayed (e.g., 100 AuraCoins = $1).
96
+
97
+ ### Step 4: Place Order
98
+
99
+ * **Review Final Total:** Before confirming, carefully review the final breakdown, including item costs, shipping fees, applied discounts, and the total amount due.
100
+ * **Terms and Conditions:** By placing an order, you agree to AuraCart's Terms of Service and Privacy Policy.
101
+ * **"Place Order" / "Confirm Payment" Button:** Click this button to finalize your purchase.
102
+ * **Payment Gateway Redirection:** For card payments or bank transfers, you may be redirected to a secure payment gateway to complete the transaction.
103
+ * **Order Confirmation:** Upon successful payment, you will receive an order confirmation on the screen, typically with an order ID. An email confirmation will also be sent to your registered email address.
104
+
105
+ Congratulations! Your AuraCart order is now placed. You can track its status in your "My Orders" section.
knowledge_base/v2_multilingual/02_shopping_guide_my.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Panduan Membeli-belah
2
+
3
+ Selamat datang ke panduan membeli-belah komprehensif AuraCart! Dokumen ini akan membimbing anda melalui keseluruhan proses mencari produk, menguruskan troli beli-belah anda, menggunakan diskaun, dan melengkapkan pembelian anda di AuraMall.
4
+
5
+ ## 1. Cara Mencari Produk
6
+
7
+ Mencari apa yang anda perlukan di AuraCart adalah mudah dan intuitif.
8
+
9
+ ### Menggunakan Bar Carian
10
+
11
+ * **Lokasi:** Bar carian terletak dengan jelas di bahagian atas laman web AuraCart atau antara muka aplikasi.
12
+ * **Kata Kunci:** Masukkan kata kunci yang relevan untuk produk yang anda cari (contohnya, "telefon pintar," "fon kepala tanpa wayar," "t-shirt lelaki").
13
+ * **Nama Jenama:** Anda juga boleh mencari terus mengikut nama jenama (contohnya, "Samsung," "Nike").
14
+ * **ID Produk/SKU:** Jika anda mempunyai ID produk atau SKU tertentu, anda boleh menggunakannya untuk carian yang tepat.
15
+
16
+ ### Melayari Mengikut Kategori
17
+
18
+ * **Akses Kategori:** Di halaman utama AuraCart atau menu navigasi, anda akan menemui senarai kategori produk utama (contohnya, Elektronik, Fesyen, Kediaman & Kehidupan, Barangan Runcit).
19
+ * **Sub-Kategori:** Mengklik pada kategori utama sering kali akan mendedahkan sub-kategori untuk membantu anda mempersempitkan carian anda dengan lebih jauh (contohnya, Elektronik > Telefon Bimbit > Telefon Android).
20
+
21
+ ### Menggunakan Penapis untuk Carian Diperhalusi
22
+
23
+ Setelah anda mencari atau menavigasi ke kategori, anda boleh memperhalusi hasil anda menggunakan pelbagai penapis:
24
+ * **Julat Harga:** Tetapkan harga minimum dan maksimum.
25
+ * **Jenama:** Tapis mengikut jenama tertentu yang tersedia di AuraMall.
26
+ * **Penilaian:** Tunjukkan produk dengan penilaian pelanggan purata tertentu.
27
+ * **Penjual:** Tapis mengikut penjual tertentu atau kedai rasmi.
28
+ * **Pilihan Penghantaran:** Tapis mengikut penghantaran tempatan atau antarabangsa, atau produk yang layak untuk penghantaran pantas.
29
+ * **Promosi:** Lihat produk yang layak untuk promosi atau diskaun tertentu.
30
+ * **Ciri-ciri/Spesifikasi:** Untuk elektronik atau barangan tertentu, tapis mengikut warna, saiz, kapasiti, dsb.
31
+
32
+ ## 2. Menggunakan Troli Beli-belah
33
+
34
+ Troli beli-belah adalah tempat anda mengumpul barangan yang ingin anda beli.
35
+
36
+ ### Menambah Barangan ke Troli
37
+
38
+ 1. **Halaman Produk:** Setelah anda menemui barangan yang ingin anda beli, navigasi ke halaman butiran produknya.
39
+ 2. **Pilih Pilihan:** Jika berkenaan, pilih variasi seperti saiz, warna, atau kuantiti.
40
+ 3. **Butang "Add to Cart":** Klik butang "Add to Cart". Mesej pengesahan biasanya akan muncul, dan barangan akan ditambahkan ke troli anda.
41
+ 4. **Teruskan Membeli-belah atau Lihat Troli:** Anda boleh terus melayari AuraMall atau terus melihat troli anda dengan serta-merta.
42
+
43
+ ### Menyemak dan Mengubah Suai Barangan Troli
44
+
45
+ * **Mengakses Troli Anda:** Klik pada ikon troli beli-belah (biasanya terletak di sudut kanan atas halaman/aplikasi) untuk melihat kandungan troli anda.
46
+ * **Pelarasan Kuantiti:** Ubah kuantiti mana-mana barangan dengan menggunakan butang "+" dan "-" atau memasukkan terus nombor yang dikehendaki.
47
+ * **Mengeluarkan Barangan:** Untuk mengeluarkan barangan, klik butang "Remove" atau "Delete" di sebelahnya.
48
+ * **Menyimpan untuk Kemudian:** Sesetengah barangan mungkin mempunyai pilihan "Save for Later," yang memindahkannya keluar dari troli anda tetapi menyimpannya untuk pertimbangan masa depan.
49
+
50
+ ## 3. Menggunakan Baucar Promosi dan Diskaun
51
+
52
+ AuraCart menawarkan pelbagai cara untuk menjimatkan wang pada pembelian anda.
53
+
54
+ ### Cara Menggunakan Baucar/Kod Promo
55
+
56
+ 1. **Pengumpulan Baucar:** Baucar selalunya boleh dikumpul terus daripada sepanduk promosi di halaman utama AuraCart, halaman produk, atau kedai penjual.
57
+ 2. **Semasa Pembayaran:** Apabila anda meneruskan ke halaman pembayaran dari troli beli-belah anda, anda akan melihat bahagian untuk "Voucher Code" atau "Apply Promo Code."
58
+ 3. **Masukkan Kod:** Jika anda mempunyai kod tertentu, taipkan dengan tepat ke dalam medan dan klik "Apply."
59
+ 4. **Pilih Baucar yang Dikumpul:** Jika anda telah mengumpul baucar, ia biasanya akan muncul sebagai pilihan untuk dipilih daripada senarai. Pilih baucar yang ingin anda gunakan.
60
+ 5. **Sahkan Diskaun:** Diskaun akan dikenakan pada jumlah keseluruhan anda, dan anda akan melihat harga yang dikemas kini sebelum mengesahkan pesanan anda.
61
+
62
+ ### Terma dan Syarat Baucar
63
+
64
+ * **Kelayakan:** Baucar sering mempunyai kriteria kelayakan tertentu, seperti perbelanjaan minimum, produk/kategori tertentu, atau kaedah pembayaran tertentu (contohnya, eksklusif AuraWallet).
65
+ * **Tarikh Luput:** Semua baucar mempunyai tarikh luput. Pastikan anda menggunakannya sebelum ia luput.
66
+ * **Had Penggunaan:** Baucar mungkin terhad kepada satu setiap pelanggan atau satu setiap transaksi.
67
+ * **Tidak Boleh Ditindan:** Baucar umumnya tidak boleh ditindan, yang bermaksud anda biasanya hanya boleh menggunakan satu baucar setiap pesanan. AuraCart secara automatik akan menggunakan diskaun terbaik yang tersedia jika beberapa baucar dikumpul.
68
+ * **Bayaran Balik:** Jika pesanan yang dibeli dengan baucar dibatalkan atau dipulangkan, jumlah baucar biasanya tidak akan dikembalikan, tetapi jumlah yang dibayar akan dikembalikan. Semak terma baucar tertentu.
69
+
70
+ ## 4. Proses Pembayaran Lengkap
71
+
72
+ Setelah anda bersedia untuk membeli, proses pembayaran dipermudahkan untuk kemudahan.
73
+
74
+ ### Langkah 1: Semak Pesanan Anda
75
+
76
+ * Selepas mengklik "Checkout" dari troli beli-belah anda, anda akan dibawa ke halaman ringkasan pesanan.
77
+ * **Sahkan Barangan dan Kuantiti:** Semak semula semua barangan dan kuantitinya.
78
+ * **Alamat Penghantaran:** Sahkan alamat penghantaran lalai anda atau pilih/tambah yang baharu. Pastikan semua butiran adalah betul untuk mengelakkan masalah penghantaran.
79
+ * **Pilih Pilihan Penghantaran:** Pilih kaedah penghantaran pilihan anda jika beberapa pilihan tersedia (contohnya, standard, ekspres).
80
+
81
+ ### Langkah 2: Pilih Kaedah Pembayaran
82
+
83
+ AuraCart menawarkan pelbagai pilihan pembayaran yang selamat:
84
+
85
+ * **AuraWallet:** Untuk pembayaran yang pantas, lancar dan potensi diskaun eksklusif/peluang mendapatkan AuraCoins. Pastikan AuraWallet anda mempunyai baki yang mencukupi atau dipautkan kepada sumber tambah nilai.
86
+ * **Kad Kredit/Debit:** Masukkan butiran kad anda dengan selamat. Anda mungkin mempunyai pilihan untuk menyimpan kad anda untuk pembelian masa depan (disulitkan).
87
+ * **Pindahan Bank:** Ikut arahan untuk pindahan bank secara langsung; kaedah ini mungkin memerlukan pengesahan manual dan mengambil masa yang lebih lama untuk pengesahan pesanan.
88
+ * **Tunai Semasa Penghantaran (COD):** Tersedia untuk produk dan lokasi terpilih. Sila sediakan jumlah yang tepat semasa penghantaran.
89
+ * **Pelan Ansuran:** Untuk barangan bernilai tinggi, AuraCart mungkin menawarkan pilihan ansuran melalui bank/penyedia rakan kongsi.
90
+
91
+ ### Langkah 3: Gunakan Baucar dan AuraCoins
92
+
93
+ * Di halaman pembayaran, cari bahagian "Voucher" atau "AuraCoins".
94
+ * **Baucar:** Pilih atau masukkan kod baucar yang anda inginkan (seperti yang diperincikan dalam seksyen 3).
95
+ * **AuraCoins:** Jika anda mempunyai AuraCoins yang mencukupi, anda akan melihat pilihan untuk menggunakannya pada pembelian anda. Anda boleh memilih untuk menggunakan semua AuraCoins yang tersedia atau jumlah tertentu. Setiap AuraCoin mempunyai nilai monetari tertentu yang akan dipaparkan (contohnya, 100 AuraCoins = $1).
96
+
97
+ ### Langkah 4: Buat Pesanan
98
+
99
+ * **Semak Jumlah Akhir:** Sebelum mengesahkan, semak dengan teliti pecahan akhir, termasuk kos barangan, yuran penghantaran, diskaun yang digunakan, dan jumlah keseluruhan yang perlu dibayar.
100
+ * **Terma dan Syarat:** Dengan membuat pesanan, anda bersetuju dengan Terma Perkhidmatan dan Dasar Privasi AuraCart.
101
+ * **Butang "Place Order" / "Confirm Payment":** Klik butang ini untuk memuktamadkan pembelian anda.
102
+ * **Pengalihan Gerbang Pembayaran:** Untuk pembayaran kad atau pindahan bank, anda mungkin dialihkan ke gerbang pembayaran yang selamat untuk melengkapkan transaksi.
103
+ * **Pengesahan Pesanan:** Setelah pembayaran berjaya, anda akan menerima pengesahan pesanan pada skrin, biasanya dengan ID pesanan. Pengesahan e-mel juga akan dihantar ke alamat e-mel berdaftar anda.
104
+
105
+ Tahniah! Pesanan AuraCart anda kini telah dibuat. Anda boleh menjejaki statusnya dalam bahagian "My Orders" anda.
knowledge_base/v2_multilingual/03_shipping_and_delivery_en.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Shipping and Delivery
2
+
3
+ This document provides a comprehensive guide to understanding AuraCart's shipping and delivery processes, from tracking your order to what to do if your item doesn't arrive as expected.
4
+
5
+ ## 1. Order Tracking
6
+
7
+ Keeping track of your purchase is easy with AuraCart's integrated tracking system.
8
+
9
+ ### How to Track Your Order
10
+
11
+ 1. **Log In to Your Account:** Access your AuraCart account through the app or website.
12
+ 2. **Navigate to "My Orders":** From your dashboard or profile, select "My Orders" or "Order History."
13
+ 3. **Select the Order:** Find the specific order you wish to track.
14
+ 4. **View Tracking Details:** Click on the order. You will see its current status and a "Track Shipment" button or direct tracking information. This will display detailed real-time updates from the logistics partner.
15
+
16
+ ### Tracking Number and Updates
17
+
18
+ * **Tracking Number:** A unique tracking number is automatically assigned to your order once it has been shipped by the seller. This number is accessible within your order details.
19
+ * **Update Frequency:** Tracking information is updated regularly by the shipping carrier. Updates typically occur when the package reaches a new checkpoint (e.g., departing a sorting facility, arriving at a local hub, out for delivery).
20
+ * **Information Provided:** The tracking page will show the current location of your package, estimated delivery date (if available), and a history of its journey.
21
+
22
+ ## 2. Understanding Order Statuses
23
+
24
+ Your order will move through several statuses from purchase to delivery. Here's what each status means:
25
+
26
+ * **Pending Payment:** Your order has been placed, but payment is still being processed or has not yet been completed.
27
+ * **Processing / Awaiting Shipment:** Your payment has been confirmed, and the seller is preparing your order for shipment (e.g., picking, packing).
28
+ * **Shipped / In Transit:** Your order has been handed over to the logistics partner and is on its way to your delivery address. You can typically begin tracking your order at this stage.
29
+ * **Out for Delivery:** Your package has arrived at the local delivery hub and is with a courier for final delivery to your address.
30
+ * **Delivered:** Your package has been successfully delivered to the specified address.
31
+ * **Cancelled:** The order has been cancelled, either by the buyer, seller, or AuraCart. Reasons may include payment issues, item unavailability, or buyer request.
32
+ * **Return Initiated:** The buyer has initiated a return request for the item.
33
+ * **Return Approved / Rejected:** The return request has been reviewed and either approved or denied.
34
+ * **Refunded:** A refund has been processed for your order, either due to a return, cancellation, or other resolution.
35
+
36
+ ## 3. Estimated Delivery Times
37
+
38
+ Delivery times on AuraCart depend on several factors, including the seller's location, your delivery address, the type of product, and the chosen shipping method.
39
+
40
+ ### Domestic Shipping (within the same country)
41
+
42
+ * **Standard Shipping:**
43
+ * **Within Major Cities:** Typically 2-5 business days.
44
+ * **Inter-city / Remote Areas:** Typically 5-10 business days.
45
+ * **Express Shipping (if available):**
46
+ * **Within Major Cities:** Often 1-2 business days.
47
+ * **Factors Affecting Domestic Delivery:**
48
+ * **Seller Processing Time:** Time taken by the seller to prepare and hand over the item to the courier.
49
+ * **Logistics Partner Efficiency:** The speed of the selected courier service.
50
+ * **Public Holidays & Weekends:** Deliveries do not typically occur on public holidays or weekends, extending delivery times.
51
+ * **Unforeseen Circumstances:** Extreme weather, natural disasters, or major public events can cause delays.
52
+
53
+ ### International Shipping (cross-border)
54
+
55
+ * **Standard International Shipping:**
56
+ * Typically 7-25 business days, varying significantly by origin and destination country.
57
+ * **Express International Shipping (if available):**
58
+ * Can be faster, often 3-7 business days, but at a higher cost.
59
+ * **Factors Affecting International Delivery:**
60
+ * **Customs Clearance:** Packages must pass through customs in both the origin and destination countries, which can sometimes cause significant delays.
61
+ * **Import Duties & Taxes:** Buyers are responsible for any applicable import duties, taxes, or customs fees levied by the destination country's customs authorities. These are not included in the item price or shipping cost and may need to be paid upon delivery.
62
+ * **International Logistics:** The complexity of international shipping networks.
63
+
64
+ ### General Notes on Delivery Times
65
+
66
+ * **Business Days:** All estimated delivery times refer to business days (Monday to Friday, excluding public holidays).
67
+ * **Estimates Only:** The provided delivery times are estimates. While AuraCart and its logistics partners strive to meet them, occasional delays can occur.
68
+ * **Check Product Page:** Always refer to the estimated delivery time displayed on the product page and during checkout for the most accurate projection for your specific order.
69
+
70
+ ## 4. What to Do If Your Item Doesn't Arrive
71
+
72
+ While rare, delays or lost packages can happen. Here's a step-by-step guide on how to proceed:
73
+
74
+ ### Step 1: Check Tracking and Estimated Delivery Time
75
+
76
+ * **Re-check "My Orders":** Go to your "My Orders" section and review the latest tracking updates.
77
+ * **Compare with ETA:** Cross-reference the current status with the estimated delivery date provided at the time of purchase. It's common for packages to arrive slightly after the initial estimate, especially during peak seasons.
78
+
79
+ ### Step 2: Verify Your Shipping Address
80
+
81
+ * **Accuracy Check:** Go to "My Account" > "Addresses" and ensure the shipping address provided for the order is accurate and complete, including unit numbers, street names, postal codes, and contact numbers. An incorrect address is a common reason for delivery issues.
82
+
83
+ ### Step 3: Check Around Your Delivery Location
84
+
85
+ * **Neighbors/Family Members:** Ask if a neighbor or family member might have received the package on your behalf.
86
+ * **Security/Building Management:** If you live in an apartment or gated community, check with your building's security or front desk.
87
+ * **Safe Place:** Couriers sometimes leave packages in a safe, hidden spot near your door if direct handover isn't possible. Check common "safe places" like behind a plant or near a back entrance.
88
+
89
+ ### Step 4: Contact AuraCart Customer Support
90
+
91
+ * **When to Contact:** If the estimated delivery time has passed by a reasonable margin (e.g., 3-5 business days beyond the latest estimate for domestic, or 5-7 business days for international) and you have completed the checks above, it's time to contact AuraCart Customer Support.
92
+ * **How to Contact:** Go to the "Customer Support" section of the AuraCart app or website and initiate a chat or submit a ticket, providing your order ID.
93
+ * **Information to Provide:** Be ready to provide your order number, details of what you've already checked, and any relevant tracking information.
94
+
95
+ ### Step 5: AuraCart's Buyer Protection
96
+
97
+ * **Dispute Resolution:** AuraCart is committed to ensuring you receive your orders. If an item is genuinely lost in transit or was never delivered, AuraCart's Buyer Protection program will assist in investigating the issue with the seller and courier.
98
+ * **Resolution:** Depending on the outcome of the investigation, you may be eligible for a full refund or a re-shipment of the item (subject to seller availability and policy).
99
+ * **Timelines:** Investigations may take some time, but AuraCart will keep you updated throughout the process.
100
+
101
+ Your satisfaction is our priority, and we're here to help ensure your AuraCart experience is smooth and reliable.
knowledge_base/v2_multilingual/03_shipping_and_delivery_my.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Penghantaran dan Penyerahan
2
+
3
+ Dokumen ini menyediakan panduan komprehensif untuk memahami proses penghantaran dan penyerahan AuraCart, daripada penjejakan pesanan anda hingga tindakan yang perlu diambil jika item anda tidak tiba seperti yang dijangka.
4
+
5
+ ## 1. Penjejakan Pesanan
6
+
7
+ Mengesan pembelian anda adalah mudah dengan sistem penjejakan bersepadu AuraCart.
8
+
9
+ ### Cara Menjejaki Pesanan Anda
10
+
11
+ 1. **Log Masuk ke Akaun Anda:** Akses akaun AuraCart anda melalui aplikasi atau laman web.
12
+ 2. **Navigasi ke "My Orders":** Dari papan pemuka atau profil anda, pilih "My Orders" atau "Order History."
13
+ 3. **Pilih Pesanan:** Cari pesanan tertentu yang ingin anda jejaki.
14
+ 4. **Lihat Butiran Penjejakan:** Klik pada pesanan. Anda akan melihat status semasa dan butang "Track Shipment" atau maklumat penjejakan terus. Ini akan memaparkan kemas kini masa nyata yang terperinci daripada rakan kongsi logistik.
15
+
16
+ ### Nombor Penjejakan dan Kemas Kini
17
+
18
+ * **Nombor Penjejakan:** Nombor penjejakan unik secara automatik diberikan kepada pesanan anda setelah dihantar oleh penjual. Nombor ini boleh diakses dalam butiran pesanan anda.
19
+ * **Kekerapan Kemas Kini:** Maklumat penjejakan dikemas kini secara berkala oleh pembawa penghantaran. Kemas kini biasanya berlaku apabila pakej mencapai pusat pemeriksaan baharu (contohnya, meninggalkan kemudahan pengasingan, tiba di hab tempatan, keluar untuk penghantaran).
20
+ * **Maklumat yang Disediakan:** Halaman penjejakan akan menunjukkan lokasi semasa pakej anda, anggaran tarikh penghantaran (jika tersedia), dan sejarah perjalanannya.
21
+
22
+ ## 2. Memahami Status Pesanan
23
+
24
+ Pesanan anda akan melalui beberapa status dari pembelian hingga penyerahan. Berikut adalah maksud setiap status:
25
+
26
+ * **Pending Payment:** Pesanan anda telah dibuat, tetapi pembayaran masih dalam proses atau belum selesai.
27
+ * **Processing / Awaiting Shipment:** Pembayaran anda telah disahkan, dan penjual sedang menyediakan pesanan anda untuk penghantaran (contohnya, memilih, membungkus).
28
+ * **Shipped / In Transit:** Pesanan anda telah diserahkan kepada rakan kongsi logistik dan sedang dalam perjalanan ke alamat penghantaran anda. Anda biasanya boleh mula menjejaki pesanan anda pada peringkat ini.
29
+ * **Out for Delivery:** Pakej anda telah tiba di hab penghantaran tempatan dan bersama kurier untuk penghantaran akhir ke alamat anda.
30
+ * **Delivered:** Pakej anda telah berjaya dihantar ke alamat yang ditentukan.
31
+ * **Cancelled:** Pesanan telah dibatalkan, sama ada oleh pembeli, penjual, atau AuraCart. Sebab-sebab mungkin termasuk isu pembayaran, ketiadaan item, atau permintaan pembeli.
32
+ * **Return Initiated:** Pembeli telah memulakan permintaan pemulangan untuk item tersebut.
33
+ * **Return Approved / Rejected:** Permintaan pemulangan telah disemak dan sama ada diluluskan atau ditolak.
34
+ * **Refunded:** Bayaran balik telah diproses untuk pesanan anda, sama ada disebabkan oleh pemulangan, pembatalan, atau penyelesaian lain.
35
+
36
+ ## 3. Anggaran Masa Penghantaran
37
+
38
+ Masa penghantaran di AuraCart bergantung kepada beberapa faktor, termasuk lokasi penjual, alamat penghantaran anda, jenis produk, dan kaedah penghantaran yang dipilih.
39
+
40
+ ### Penghantaran Domestik (dalam negara yang sama)
41
+
42
+ * **Penghantaran Standard:**
43
+ * **Dalam Bandar-bandar Utama:** Biasanya 2-5 hari bekerja.
44
+ * **Antara Bandar / Kawasan Pedalaman:** Biasanya 5-10 hari bekerja.
45
+ * **Penghantaran Ekspres (jika tersedia):**
46
+ * **Dalam Bandar-bandar Utama:** Selalunya 1-2 hari bekerja.
47
+ * **Faktor-faktor yang Mempengaruhi Penghantaran Domestik:**
48
+ * **Masa Pemprosesan Penjual:** Masa yang diambil oleh penjual untuk menyediakan dan menyerahkan item kepada kurier.
49
+ * **Kecekapan Rakan Logistik:** Kelajuan perkhidmatan kurier yang dipilih.
50
+ * **Cuti Umum & Hujung Minggu:** Penghantaran biasanya tidak berlaku pada cuti umum atau hujung minggu, memanjangkan masa penghantaran.
51
+ * **Keadaan Luar Jangka:** Cuaca ekstrem, bencana alam, atau acara awam utama boleh menyebabkan kelewatan.
52
+
53
+ ### Penghantaran Antarabangsa (rentas sempadan)
54
+
55
+ * **Penghantaran Antarabangsa Standard:**
56
+ * Biasanya 7-25 hari bekerja, berbeza secara signifikan mengikut negara asal dan destinasi.
57
+ * **Penghantaran Antarabangsa Ekspres (jika tersedia):**
58
+ * Boleh lebih pantas, selalunya 3-7 hari bekerja, tetapi dengan kos yang lebih tinggi.
59
+ * **Faktor-faktor yang Mempengaruhi Penghantaran Antarabangsa:**
60
+ * **Pelepasan Kastam:** Pakej mesti melalui kastam di kedua-dua negara asal dan destinasi, yang kadangkala boleh menyebabkan kelewatan yang signifikan.
61
+ * **Duti Import & Cukai:** Pembeli bertanggungjawab untuk sebarang duti import, cukai, atau yuran kastam yang dikenakan oleh pihak berkuasa kastam negara destinasi. Ini tidak termasuk dalam harga item atau kos penghantaran dan mungkin perlu dibayar semasa penyerahan.
62
+ * **Logistik Antarabangsa:** Kerumitan rangkaian penghantaran antarabangsa.
63
+
64
+ ### Nota Umum Mengenai Masa Penghantaran
65
+
66
+ * **Hari Perniagaan:** Semua anggaran masa penghantaran merujuk kepada hari bekerja (Isnin hingga Jumaat, tidak termasuk cuti umum).
67
+ * **Anggaran Sahaja:** Masa penghantaran yang diberikan adalah anggaran. Walaupun AuraCart dan rakan kongsi logistiknya berusaha untuk memenuhinya, kelewatan sekali-sekala boleh berlaku.
68
+ * **Semak Halaman Produk:** Sentiasa rujuk kepada anggaran masa penghantaran yang dipaparkan di halaman produk dan semasa pembayaran untuk unjuran yang paling tepat untuk pesanan khusus anda.
69
+
70
+ ## 4. Apa yang Perlu Dilakukan Jika Item Anda Tidak Tiba
71
+
72
+ Walaupun jarang berlaku, kelewatan atau kehilangan pakej boleh terjadi. Berikut adalah panduan langkah demi langkah tentang cara untuk meneruskan:
73
+
74
+ ### Langkah 1: Semak Penjejakan dan Anggaran Masa Penghantaran
75
+
76
+ * **Semak Semula "My Orders":** Pergi ke bahagian "My Orders" anda dan semak kemas kini penjejakan terkini.
77
+ * **Bandingkan dengan ETA:** Bandingkan status semasa dengan anggaran tarikh penghantaran yang diberikan pada masa pembelian. Adalah biasa bagi pakej untuk tiba sedikit selepas anggaran awal, terutamanya semasa musim puncak.
78
+
79
+ ### Langkah 2: Sahkan Alamat Penghantaran Anda
80
+
81
+ * **Semakan Ketepatan:** Pergi ke "My Account" > "Addresses" dan pastikan alamat penghantaran yang diberikan untuk pesanan adalah tepat dan lengkap, termasuk nombor unit, nama jalan, kod pos, dan nombor hubungan. Alamat yang salah adalah sebab biasa untuk isu penghantaran.
82
+
83
+ ### Langkah 3: Semak Sekitar Lokasi Penghantaran Anda
84
+
85
+ * **Jiran/Ahli Keluarga:** Tanya sama ada jiran atau ahli keluarga mungkin telah menerima pakej bagi pihak anda.
86
+ * **Pengurusan Keselamatan/Bangunan:** Jika anda tinggal di pangsapuri atau komuniti berpagar, semak dengan keselamatan bangunan atau kaunter depan anda.
87
+ * **Tempat Selamat:** Kurier kadangkala meninggalkan pakej di tempat yang selamat dan tersembunyi berhampiran pintu anda jika penyerahan terus tidak dapat dilakukan. Semak "tempat selamat" biasa seperti di belakang pokok atau berhampiran pintu belakang.
88
+
89
+ ### Langkah 4: Hubungi Sokongan Pelanggan AuraCart
90
+
91
+ * **Bila Perlu Menghubungi:** Jika anggaran masa penghantaran telah berlalu dengan margin yang munasabah (contohnya, 3-5 hari bekerja melebihi anggaran terkini untuk domestik, atau 5-7 hari bekerja untuk antarabangsa) dan anda telah menyelesaikan semakan di atas, sudah tiba masanya untuk menghubungi Sokongan Pelanggan AuraCart.
92
+ * **Cara Menghubungi:** Pergi ke bahagian "Customer Support" aplikasi atau laman web AuraCart dan mulakan sembang atau serahkan tiket, berikan ID pesanan anda.
93
+ * **Maklumat untuk Disediakan:** Sediakan nombor pesanan anda, butiran apa yang telah anda semak, dan sebarang maklumat penjejakan yang relevan.
94
+
95
+ ### Langkah 5: Perlindungan Pembeli AuraCart
96
+
97
+ * **Penyelesaian Pertikaian:** AuraCart komited untuk memastikan anda menerima pesanan anda. Jika item benar-benar hilang dalam transit atau tidak pernah dihantar, program Perlindungan Pembeli AuraCart akan membantu dalam menyiasat isu tersebut dengan penjual dan kurier.
98
+ * **Penyelesaian:** Bergantung pada hasil siasatan, anda mungkin layak mendapat bayaran balik penuh atau penghantaran semula item (tertakluk kepada ketersediaan dan dasar penjual).
99
+ * **Garis Masa:** Siasatan mungkin mengambil masa, tetapi AuraCart akan memastikan anda sentiasa dikemas kini sepanjang proses.
100
+
101
+ Kepuasan anda adalah keutamaan kami, dan kami sedia membantu memastikan pengalaman AuraCart anda lancar dan boleh dipercayai.
knowledge_base/v2_multilingual/04_returns_and_refunds_en.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Returns and Refunds Policy
2
+
3
+ At AuraCart, we strive to ensure your satisfaction with every purchase on AuraMall. This comprehensive policy outlines the conditions and procedures for returns and refunds, designed to be fair and transparent.
4
+
5
+ ## 1. 30-Day Return Window
6
+
7
+ AuraCart offers a generous **30-day return window** from the date of delivery for most items purchased on AuraMall. This gives you ample time to inspect your purchase and decide if it meets your expectations.
8
+
9
+ * **Eligibility Start Date:** The 30-day period begins on the date the item is marked as "Delivered" by our logistics partners.
10
+ * **Request Deadline:** All return requests must be submitted within this 30-day period. Requests made after this window will generally not be accepted.
11
+
12
+ ## 2. Conditions for Returns
13
+
14
+ For a return to be eligible, the item must meet specific conditions. Failure to meet these conditions may result in the rejection of your return request.
15
+
16
+ ### General Conditions for All Returns
17
+
18
+ * **Within the 30-Day Window:** The return request must be initiated within 30 days of delivery.
19
+ * **Original Condition:** The item must be returned in its original, unused, and re-sellable condition. This includes all original packaging, tags, manuals, accessories, and free gifts or promotional items that came with the product.
20
+ * **Reason for Return:** You must select a valid reason for return (e.g., defective item, wrong item, damaged during shipping, changed mind).
21
+ * **Proof of Purchase:** A valid proof of purchase (e.g., AuraCart order number, invoice) is required.
22
+
23
+ ### Specific Item Conditions
24
+
25
+ * **Apparel & Fashion:** Must be unworn, unwashed, and have all original tags still attached. Undergarments, swimwear, and intimate apparel are generally non-returnable for hygiene reasons unless defective.
26
+ * **Electronics & Gadgets:** Must be in original packaging with all accessories (cables, chargers, earphones, manuals). If the item is faulty, any user data must be wiped before returning. Items with clear signs of misuse or physical damage not present upon delivery will not be accepted.
27
+ * **Health & Beauty Products:** Non-returnable if the seal is broken or if used, due to hygiene reasons. This includes cosmetics, skincare, and personal care items, unless defective or wrongly sent.
28
+ * **Perishable/Groceries:** Generally non-returnable unless expired upon delivery, incorrect item, or clearly damaged/spoiled. Returns must be reported immediately upon receipt.
29
+ * **Digital Products:** Non-returnable once redeemed or downloaded.
30
+ * **Customized/Personalized Items:** Generally non-returnable unless defective or incorrect due to seller error.
31
+ * **Items Marked "Non-Returnable":** Some specific items may be explicitly marked as non-returnable on their product page. Please check this before purchasing.
32
+
33
+ ## 3. Step-by-Step Return Process
34
+
35
+ Follow these steps to initiate and complete a return request:
36
+
37
+ 1. **Initiate Return Request:**
38
+ * Log in to your AuraCart account.
39
+ * Go to "My Orders" and select the order containing the item you wish to return.
40
+ * Click on "Return/Refund" or "Request Return" next to the relevant item.
41
+ * Select the reason for your return from the provided options.
42
+ * Provide a clear description of the issue and upload supporting evidence (photos/videos) if applicable (e.g., for damaged or defective items).
43
+ 2. **Seller Review / AuraCart Review:**
44
+ * Your return request will be submitted to the seller for their review. For certain cases or if the seller doesn't respond promptly, AuraCart's dispute resolution team may step in to review.
45
+ * You may be contacted by the seller or AuraCart for further information or clarification.
46
+ 3. **Return Approval:**
47
+ * If your return request is approved, you will receive instructions on how to return the item. This typically includes a return shipping label or instructions for drop-off.
48
+ * **Packaging:** Securely package the item in its original packaging, ensuring all original contents are included.
49
+ * **Shipping:** Ship the item back using the provided label or method within the specified timeframe (usually 5-7 days after approval). AuraCart may cover return shipping costs for valid reasons (e.g., defective, wrong item). For "change of mind" returns, return shipping costs may be borne by the buyer.
50
+ 4. **Item Inspection:**
51
+ * Once the returned item is received by the seller or AuraCart, it will undergo an inspection to ensure it meets the return conditions.
52
+ 5. **Refund Processing:**
53
+ * If the item passes inspection, your refund will be processed according to the refund policy (see section 5). If it fails inspection, the item may be returned to you, and the refund denied.
54
+
55
+ ## 4. AuraMall-Specific Policies
56
+
57
+ AuraMall, our premium marketplace, hosts official brands and authorized sellers. While the general AuraCart return policy applies, some AuraMall sellers may offer enhanced or specific return conditions.
58
+
59
+ * **Official Store Policies:** Some official brand stores on AuraMall may have their own slightly modified return policies (e.g., longer return windows for specific items, direct exchange options). Always check the seller's specific policy on their AuraMall store page or the product description.
60
+ * **Authenticity Guarantee:** All products on AuraMall are guaranteed to be authentic. If you receive an item from AuraMall that you believe is not authentic, your return will be prioritized, and a full refund will be issued upon verification.
61
+ * **Enhanced Support:** Disputes for AuraMall purchases may receive expedited attention from AuraCart's customer support team.
62
+
63
+ ## 5. Refund Processing Times
64
+
65
+ Once a refund is approved and processed, the time it takes for the funds to appear in your account depends on the original payment method.
66
+
67
+ ### Refund Methods
68
+
69
+ * **AuraWallet:** Refunds to your AuraWallet are the fastest, typically processed within **1-3 business days** after the returned item passes inspection.
70
+ * **Credit/Debit Card:** Refunds to credit or debit cards usually take **5-10 business days** to appear on your statement, depending on your bank's processing times.
71
+ * **Bank Transfer:** Refunds to bank accounts can take **3-7 business days** to reflect, depending on interbank processing.
72
+ * **Cash on Delivery (COD):** For COD orders, refunds are typically issued to your AuraWallet or a specified bank account. This process can take **3-7 business days** after you provide your details and the return is approved.
73
+
74
+ ### General Refund Notes
75
+
76
+ * **Processing Start:** The refund processing time begins *after* the returned item has been successfully received and inspected by the seller or AuraCart, and the return is confirmed as eligible.
77
+ * **Partial Refunds:** In some cases (e.g., only part of a bundled item is returned, or minor damage to packaging), a partial refund may be issued at AuraCart's discretion.
78
+ * **Shipping Fees:** Original shipping fees are generally non-refundable unless the return is due to a seller error (e.g., defective, wrong item).
79
+ * **Vouchers/AuraCoins:** If a voucher or AuraCoins were used, the monetary value of the voucher is typically not refunded, but the portion paid by other means (e.g., AuraWallet, card) will be. AuraCoins used may be re-credited to your account.
80
+ * **Notification:** You will receive an email notification once your refund has been processed.
81
+
82
+ We encourage you to review this policy thoroughly before making a purchase. AuraCart is committed to making your shopping experience as smooth and risk-free as possible.
knowledge_base/v2_multilingual/04_returns_and_refunds_my.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dasar Pemulangan dan Bayaran Balik
2
+
3
+ Di AuraCart, kami berusaha untuk memastikan kepuasan anda dengan setiap pembelian di AuraMall. Dasar komprehensif ini menggariskan syarat dan prosedur untuk pemulangan dan bayaran balik, yang direka bentuk untuk menjadi adil dan telus.
4
+
5
+ ## 1. Tempoh Pemulangan 30 Hari
6
+
7
+ AuraCart menawarkan **tempoh pemulangan 30 hari** yang murah hati dari tarikh penyerahan untuk kebanyakan item yang dibeli di AuraMall. Ini memberi anda masa yang mencukupi untuk memeriksa pembelian anda dan memutuskan sama ada ia memenuhi jangkaan anda.
8
+
9
+ * **Tarikh Mula Kelayakan:** Tempoh 30 hari bermula pada tarikh item ditandakan sebagai "Delivered" oleh rakan kongsi logistik kami.
10
+ * **Tarikh Akhir Permintaan:** Semua permintaan pemulangan mesti dihantar dalam tempoh 30 hari ini. Permintaan yang dibuat selepas tempoh ini secara umumnya tidak akan diterima.
11
+
12
+ ## 2. Syarat untuk Pemulangan
13
+
14
+ Untuk pemulangan layak, item mesti memenuhi syarat-syarat tertentu. Kegagalan memenuhi syarat-syarat ini boleh mengakibatkan penolakan permintaan pemulangan anda.
15
+
16
+ ### Syarat Umum untuk Semua Pemulangan
17
+
18
+ * **Dalam Tempoh 30 Hari:** Permintaan pemulangan mesti dimulakan dalam tempoh 30 hari dari penyerahan.
19
+ * **Keadaan Asal:** Item mesti dipulangkan dalam keadaan asal, tidak digunakan, dan boleh dijual semula. Ini termasuk semua pembungkusan asal, tag, manual, aksesori, dan hadiah percuma atau item promosi yang disertakan dengan produk.
20
+ * **Sebab Pemulangan:** Anda mesti memilih sebab pemulangan yang sah (contohnya, item rosak, item salah, rosak semasa penghantaran, berubah fikiran).
21
+ * **Bukti Pembelian:** Bukti pembelian yang sah (contohnya, nombor pesanan AuraCart, invois) diperlukan.
22
+
23
+ ### Syarat Item Khusus
24
+
25
+ * **Pakaian & Fesyen:** Mesti belum dipakai, belum dicuci, dan mempunyai semua tag asal masih terlekat. Pakaian dalam, pakaian renang, dan pakaian intim secara umumnya tidak boleh dipulangkan atas sebab-sebab kebersihan kecuali jika rosak.
26
+ * **Elektronik & Gadget:** Mesti dalam pembungkusan asal dengan semua aksesori (kabel, pengecas, fon telinga, manual). Jika item rosak, sebarang data pengguna mesti dipadam sebelum memulangkan. Item dengan tanda-tanda jelas penyalahgunaan atau kerosakan fizikal yang tidak wujud semasa penghantaran tidak akan diterima.
27
+ * **Produk Kesihatan & Kecantikan:** Tidak boleh dipulangkan jika meterai rosak atau jika digunakan, atas sebab-sebab kebersihan. Ini termasuk kosmetik, penjagaan kulit, dan item penjagaan diri, kecuali jika rosak atau salah dihantar.
28
+ * **Barangan Mudah Rosak/Runcit:** Secara umumnya tidak boleh dipulangkan kecuali tamat tempoh semasa penghantaran, item tidak betul, atau jelas rosak/busuk. Pemulangan mesti dilaporkan serta-merta setelah diterima.
29
+ * **Produk Digital:** Tidak boleh dipulangkan setelah ditebus atau dimuat turun.
30
+ * **Item Disesuaikan/Disesuaikan Peribadi:** Secara umumnya tidak boleh dipulangkan kecuali rosak atau tidak betul disebabkan kesilapan penjual.
31
+ * **Item Bertanda "Non-Returnable":** Sesetengah item tertentu mungkin ditandakan secara jelas sebagai tidak boleh dipulangkan di halaman produknya. Sila semak ini sebelum membeli.
32
+
33
+ ## 3. Proses Pemulangan Langkah demi Langkah
34
+
35
+ Ikut langkah-langkah ini untuk memulakan dan melengkapkan permintaan pemulangan:
36
+
37
+ 1. **Mulakan Permintaan Pemulangan:**
38
+ * Log masuk ke akaun AuraCart anda.
39
+ * Pergi ke "My Orders" dan pilih pesanan yang mengandungi item yang ingin anda pulangkan.
40
+ * Klik "Return/Refund" atau "Request Return" di sebelah item yang relevan.
41
+ * Pilih sebab pemulangan anda dari pilihan yang disediakan.
42
+ * Berikan penerangan yang jelas mengenai isu tersebut dan muat naik bukti sokongan (gambar/video) jika berkenaan (contohnya, untuk item rosak atau cacat).
43
+ 2. **Semakan Penjual / Semakan AuraCart:**
44
+ * Permintaan pemulangan anda akan dihantar kepada penjual untuk semakan mereka. Untuk kes-kes tertentu atau jika penjual tidak bertindak balas dengan segera, pasukan penyelesaian pertikaian AuraCart mungkin campur tangan untuk menyemak.
45
+ * Anda mungkin dihubungi oleh penjual atau AuraCart untuk maklumat lanjut atau penjelasan.
46
+ 3. **Kelulusan Pemulangan:**
47
+ * Jika permintaan pemulangan anda diluluskan, anda akan menerima arahan tentang cara memulangkan item tersebut. Ini biasanya termasuk label penghantaran pemulangan atau arahan untuk penghantaran drop-off.
48
+ * **Pembungkusan:** Bungkus item dengan selamat dalam pembungkusan asalnya, pastikan semua kandungan asal disertakan.
49
+ * **Penghantaran:** Hantar semula item menggunakan label atau kaedah yang disediakan dalam tempoh masa yang ditentukan (biasanya 5-7 hari selepas kelulusan). AuraCart mungkin menanggung kos penghantaran pemulangan untuk sebab-sebab yang sah (contohnya, item rosak, item salah). Untuk pemulangan "berubah fikiran", kos penghantaran pemulangan mungkin ditanggung oleh pembeli.
50
+ 4. **Pemeriksaan Item:**
51
+ * Setelah item yang dipulangkan diterima oleh penjual atau AuraCart, ia akan menjalani pemeriksaan untuk memastikan ia memenuhi syarat pemulangan.
52
+ 5. **Pemprosesan Bayaran Balik:**
53
+ * Jika item melepasi pemeriksaan, bayaran balik anda akan diproses mengikut dasar bayaran balik (lihat seksyen 5). Jika ia gagal pemeriksaan, item tersebut mungkin dipulangkan kepada anda, dan bayaran balik ditolak.
54
+
55
+ ## 4. Dasar Khusus AuraMall
56
+
57
+ AuraMall, pasaran premium kami, menjadi tuan rumah jenama rasmi dan penjual yang sah. Walaupun dasar pemulangan AuraCart umum terpakai, sesetengah penjual AuraMall mungkin menawarkan syarat pemulangan yang dipertingkatkan atau khusus.
58
+
59
+ * **Dasar Kedai Rasmi:** Sesetengah kedai jenama rasmi di AuraMall mungkin mempunyai dasar pemulangan mereka sendiri yang diubah suai sedikit (contohnya, tempoh pemulangan yang lebih lama untuk item tertentu, pilihan pertukaran langsung). Sentiasa semak dasar khusus penjual di halaman kedai AuraMall mereka atau penerangan produk.
60
+ * **Jaminan Ketulenan:** Semua produk di AuraMall dijamin ketulenannya. Jika anda menerima item dari AuraMall yang anda percaya tidak tulen, pemulangan anda akan diutamakan, dan bayaran balik penuh akan dikeluarkan setelah pengesahan.
61
+ * **Sokongan Dipertingkatkan:** Pertikaian untuk pembelian AuraMall mungkin menerima perhatian yang dipercepatkan daripada pasukan sokongan pelanggan AuraCart.
62
+
63
+ ## 5. Masa Pemprosesan Bayaran Balik
64
+
65
+ Setelah bayaran balik diluluskan dan diproses, masa yang diambil untuk dana muncul dalam akaun anda bergantung pada kaedah pembayaran asal.
66
+
67
+ ### Kaedah Bayaran Balik
68
+
69
+ * **AuraWallet:** Bayaran balik ke AuraWallet anda adalah yang terpantas, biasanya diproses dalam masa **1-3 hari bekerja** setelah item yang dipulangkan melepasi pemeriksaan.
70
+ * **Kad Kredit/Debit:** Bayaran balik ke kad kredit atau debit biasanya mengambil masa **5-10 hari bekerja** untuk muncul dalam penyata anda, bergantung pada masa pemprosesan bank anda.
71
+ * **Pindahan Bank:** Bayaran balik ke akaun bank boleh mengambil masa **3-7 hari bekerja** untuk ditunjukkan, bergantung pada pemprosesan antara bank.
72
+ * **Tunai Semasa Penghantaran (COD):** Untuk pesanan COD, bayaran balik biasanya dikeluarkan ke AuraWallet anda atau akaun bank yang ditentukan. Proses ini boleh mengambil masa **3-7 hari bekerja** selepas anda memberikan butiran anda dan pemulangan diluluskan.
73
+
74
+ ### Nota Umum Bayaran Balik
75
+
76
+ * **Mula Pemprosesan:** Masa pemprosesan bayaran balik bermula *setelah* item yang dipulangkan berjaya diterima dan diperiksa oleh penjual atau AuraCart, dan pemulangan disahkan layak.
77
+ * **Bayaran Balik Sebahagian:** Dalam beberapa kes (contohnya, hanya sebahagian daripada item gabungan dipulangkan, atau kerosakan kecil pada pembungkusan), bayaran balik sebahagian mungkin dikeluarkan atas budi bicara AuraCart.
78
+ * **Yuran Penghantaran:** Yuran penghantaran asal umumnya tidak boleh dikembalikan kecuali jika pemulangan disebabkan oleh kesilapan penjual (contohnya, item rosak, item salah).
79
+ * **Baucar/AuraCoins:** Jika baucar atau AuraCoins digunakan, nilai monetari baucar biasanya tidak dikembalikan atau dikeluarkan semula.
80
+ * Jumlah yang anda *bayar* setelah diskaun baucar akan dikembalikan. AuraCoins yang digunakan mungkin dikreditkan semula ke akaun anda.
81
+ * **Pemberitahuan:** Anda akan menerima pemberitahuan e-mel setelah bayaran balik anda diproses.
82
+
83
+ Kami menggalakkan anda untuk menyemak dasar ini dengan teliti sebelum membuat pembelian. AuraCart komited untuk menjadikan pengalaman membeli-belah anda selancar dan bebas risiko yang mungkin.
knowledge_base/v2_multilingual/05_rewards_and_promotions_en.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Rewards and Promotions
2
+
3
+ AuraCart values your loyalty! This document outlines how you can earn and utilize AuraCoins, understand the benefits of our loyalty program, and effectively use promotional vouchers to enhance your shopping experience on AuraMall.
4
+
5
+ ## 1. How to Earn AuraCoins
6
+
7
+ AuraCoins are AuraCart's loyalty points, designed to reward you for your activity on the platform.
8
+
9
+ ### Earning AuraCoins Through Purchases
10
+
11
+ * **Eligible Purchases:** You earn AuraCoins on most purchases made through AuraMall. The specific earning rate (e.g., 1 AuraCoin for every $1 spent) will be displayed on product pages or during checkout.
12
+ * **AuraMall Exclusive Offers:** Look out for special promotions on AuraMall that offer boosted AuraCoin earnings for specific products, categories, or sellers.
13
+ * **Payment Method Bonuses:** Sometimes, paying with AuraWallet may offer additional AuraCoin bonuses.
14
+ * **Calculation:** AuraCoins are typically calculated based on the net purchase amount (after discounts, excluding shipping fees and taxes).
15
+ * **Coin Issuance:** AuraCoins are usually credited to your account once your order is successfully delivered and the return window has passed (to account for potential cancellations or returns). You will receive a notification when coins are credited.
16
+
17
+ ### Earning AuraCoins Through Activities
18
+
19
+ * **Product Reviews:** Earn AuraCoins by submitting eligible reviews for products you've purchased, especially those with photos or videos.
20
+ * **Seller Ratings:** Providing ratings and feedback for sellers can also contribute to your AuraCoin balance.
21
+ * **Special Campaigns:** Participate in AuraCart's promotional campaigns, games, or events, which often offer AuraCoins as rewards. Keep an eye on the AuraCart app and website for announcements.
22
+ * **Referral Program:** Refer new users to AuraCart, and you both may earn AuraCoins once the referred user completes their first eligible purchase. (Specific terms and conditions for referral programs will be detailed separately).
23
+
24
+ ## 2. How to Use AuraCoins
25
+
26
+ AuraCoins can be redeemed to get discounts on your future purchases on AuraMall.
27
+
28
+ ### Redeeming AuraCoins During Checkout
29
+
30
+ 1. **Add Items to Cart:** Select the items you wish to purchase and proceed to checkout.
31
+ 2. **Review Order:** On the checkout page, after confirming your shipping address and selected payment method, you will see a section for "AuraCoins."
32
+ 3. **Apply AuraCoins:** If you have a sufficient balance, you will see the option to apply your AuraCoins. You can choose to use all available AuraCoins or a specific amount.
33
+ 4. **Value:** The monetary value of AuraCoins will be clearly displayed (e.g., "100 AuraCoins = $1 discount").
34
+ 5. **Confirm Discount:** The equivalent discount will be applied to your total order amount, reducing the final price you need to pay.
35
+ 6. **Complete Purchase:** Proceed to complete your payment for the remaining balance.
36
+
37
+ ### AuraCoin Redemption Rules
38
+
39
+ * **Minimum Redemption:** There may be a minimum number of AuraCoins required for redemption (e.g., a minimum of 100 AuraCoins).
40
+ * **No Cash Value:** AuraCoins cannot be converted into cash or transferred to another user.
41
+ * **Expiry:** AuraCoins may have an expiry date. Please check your AuraCoin balance in your "My Account" section for specific expiry details. Expired AuraCoins cannot be used.
42
+ * **Refunds:** If an order where AuraCoins were used is cancelled or returned, the AuraCoins will typically be re-credited to your account.
43
+ * **Combined Use:** AuraCoins can often be combined with promotional vouchers, allowing for greater savings.
44
+
45
+ ## 3. Benefits of the AuraCart Loyalty Program
46
+
47
+ AuraCart's loyalty program is designed to enhance your shopping experience and reward you for choosing us.
48
+
49
+ ### Tiered Membership (Future Enhancement)
50
+
51
+ AuraCart plans to introduce tiered loyalty membership levels (e.g., Silver, Gold, Platinum) with escalating benefits for our most loyal customers. These benefits may include:
52
+ * **Higher AuraCoin Earning Rates:** Earn more AuraCoins per dollar spent.
53
+ * **Exclusive Vouchers:** Access to special vouchers and discounts.
54
+ * **Priority Customer Support:** Expedited assistance from our support team.
55
+ * **Early Access:** Be among the first to know about new product launches or flash sales.
56
+ * **Birthday Rewards:** Special treats during your birthday month.
57
+
58
+ ### Exclusive Offers and Events
59
+
60
+ * **Member-Only Sales:** Access to sales and promotions exclusive to loyalty program members.
61
+ * **Special AuraCoin Offers:** Periodic opportunities to earn bonus AuraCoins through specific purchases or activities.
62
+ * **Personalized Recommendations:** Get tailored product recommendations based on your shopping history and preferences.
63
+
64
+ ### Enhanced Experience
65
+
66
+ * **Seamless Redemption:** Easy redemption of AuraCoins and vouchers directly at checkout.
67
+ * **Transparent Tracking:** Monitor your AuraCoin balance, earning history, and redemption history within your AuraCart account.
68
+
69
+ ## 4. Terms for Using Vouchers
70
+
71
+ Vouchers are a great way to save money on AuraCart. While generally covered in the Shopping Guide, here's a focus on their specific terms related to promotions.
72
+
73
+ ### Types of Vouchers
74
+
75
+ * **AuraCart Vouchers:** Issued by AuraCart directly, applicable across various sellers and products.
76
+ * **Seller Vouchers:** Issued by individual sellers or brands, valid only for their specific stores or products on AuraMall.
77
+ * **Payment Method Vouchers:** Discounts applicable when using specific payment methods, such as AuraWallet or a particular bank card.
78
+ * **Shipping Vouchers:** Vouchers that offer discounts on or free shipping fees.
79
+
80
+ ### Important Voucher Conditions
81
+
82
+ * **Validity Period:** All vouchers have an expiration date. Ensure you use them before they expire. Expired vouchers cannot be reactivated or redeemed.
83
+ * **Minimum Spend:** Many vouchers require a minimum purchase amount to be eligible for use. This will be clearly stated on the voucher.
84
+ * **Product/Category Specificity:** Vouchers may be limited to certain product categories, specific products, or sellers. Check the "applicable to" section of the voucher.
85
+ * **New vs. Existing Users:** Some vouchers are exclusively for new AuraCart users, while others are for existing customers.
86
+ * **Single Use:** Most vouchers are for single use per customer per transaction.
87
+ * **Non-Stackable (Generally):** While you can often combine a voucher with AuraCoin redemption, you typically cannot use multiple vouchers on a single order. AuraCart's system will usually apply the best available voucher if you have multiple eligible ones collected.
88
+ * **Refunds and Cancellations:**
89
+ * If an order using a voucher is cancelled or returned, the voucher amount itself is generally not refunded or re-issued.
90
+ * The amount you *paid* after the voucher discount will be refunded.
91
+ * Always refer to the specific terms and conditions of each voucher before use.
92
+
93
+ ### How to Collect Vouchers
94
+
95
+ * **Promotional Banners:** Look for vouchers prominently displayed on the AuraCart homepage, category pages, or during special campaigns.
96
+ * **Seller Stores:** Visit your favorite seller's AuraMall store page to find their exclusive vouchers.
97
+ * **Notifications:** Keep an eye on AuraCart app notifications and emails for personalized voucher offers.
98
+ * **Voucher Centre:** AuraCart typically has a dedicated "Voucher Centre" or "My Vouchers" section in your account where you can browse and collect available vouchers.
99
+
100
+ By understanding and utilizing AuraCoins and vouchers, you can maximize your savings and enjoy a more rewarding shopping experience on AuraCart.
knowledge_base/v2_multilingual/05_rewards_and_promotions_my.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ganjaran dan Promosi
2
+
3
+ AuraCart menghargai kesetiaan anda! Dokumen ini menggariskan cara anda boleh mendapatkan dan menggunakan AuraCoins, memahami faedah program kesetiaan kami, dan menggunakan baucar promosi dengan berkesan untuk meningkatkan pengalaman membeli-belah anda di AuraMall.
4
+
5
+ ## 1. Cara Mendapatkan AuraCoins
6
+
7
+ AuraCoins adalah mata kesetiaan AuraCart, yang direka untuk memberi ganjaran kepada anda atas aktiviti anda di platform.
8
+
9
+ ### Mendapatkan AuraCoins Melalui Pembelian
10
+
11
+ * **Pembelian Layak:** Anda memperoleh AuraCoins pada kebanyakan pembelian yang dibuat melalui AuraMall. Kadar perolehan tertentu (contohnya, 1 AuraCoin untuk setiap $1 yang dibelanjakan) akan dipaparkan di halaman produk atau semasa pembayaran.
12
+ * **Tawaran Eksklusif AuraMall:** Cari promosi istimewa di AuraMall yang menawarkan perolehan AuraCoin yang dipertingkatkan untuk produk, kategori, atau penjual tertentu.
13
+ * **Bonus Kaedah Pembayaran:** Kadangkala, pembayaran dengan AuraWallet mungkin menawarkan bonus AuraCoin tambahan.
14
+ * **Pengiraan:** AuraCoins biasanya dikira berdasarkan jumlah pembelian bersih (selepas diskaun, tidak termasuk yuran penghantaran dan cukai).
15
+ * **Pengeluaran Syiling:** AuraCoins biasanya dikreditkan ke akaun anda setelah pesanan anda berjaya dihantar dan tempoh pemulangan telah berlalu (untuk mengambil kira kemungkinan pembatalan atau pemulangan). Anda akan menerima pemberitahuan apabila syiling dikreditkan.
16
+
17
+ ### Mendapatkan AuraCoins Melalui Aktiviti
18
+
19
+ * **Ulasan Produk:** Dapatkan AuraCoins dengan menghantar ulasan yang layak untuk produk yang anda beli, terutamanya yang disertakan dengan foto atau video.
20
+ * **Penilaian Penjual:** Memberikan penilaian dan maklum balas untuk penjual juga boleh menyumbang kepada baki AuraCoin anda.
21
+ * **Kempen Khas:** Sertai kempen promosi, permainan, atau acara AuraCart, yang sering menawarkan AuraCoins sebagai ganjaran. Perhatikan aplikasi dan laman web AuraCart untuk pengumuman.
22
+ * **Program Rujukan:** Rujuk pengguna baharu kepada AuraCart, dan anda berdua mungkin memperoleh AuraCoins setelah pengguna yang dirujuk melengkapkan pembelian layak pertama mereka. (Terma dan syarat khusus untuk program rujukan akan diperincikan secara berasingan).
23
+
24
+ ## 2. Cara Menggunakan AuraCoins
25
+
26
+ AuraCoins boleh ditebus untuk mendapatkan diskaun pada pembelian masa depan anda di AuraMall.
27
+
28
+ ### Menebus AuraCoins Semasa Pembayaran
29
+
30
+ 1. **Tambah Item ke Troli:** Pilih item yang ingin anda beli dan teruskan ke pembayaran.
31
+ 2. **Semak Pesanan:** Di halaman pembayaran, setelah mengesahkan alamat penghantaran anda dan kaedah pembayaran yang dipilih, anda akan melihat bahagian untuk "AuraCoins."
32
+ 3. **Gunakan AuraCoins:** Jika anda mempunyai baki yang mencukupi, anda akan melihat pilihan untuk menggunakan AuraCoins anda. Anda boleh memilih untuk menggunakan semua AuraCoins yang tersedia atau jumlah tertentu.
33
+ 4. **Nilai:** Nilai monetari AuraCoins akan dipaparkan dengan jelas (contohnya, "100 AuraCoins = diskaun $1").
34
+ 5. **Sahkan Diskaun:** Diskaun yang setara akan dikenakan pada jumlah pesanan anda, mengurangkan harga akhir yang perlu anda bayar.
35
+ 6. **Selesaikan Pembelian:** Teruskan untuk melengkapkan pembayaran anda untuk baki yang tinggal.
36
+
37
+ ### Peraturan Penebusan AuraCoin
38
+
39
+ * **Penebusan Minimum:** Mungkin terdapat jumlah minimum AuraCoins yang diperlukan untuk penebusan (contohnya, minimum 100 AuraCoins).
40
+ * **Tiada Nilai Tunai:** AuraCoins tidak boleh ditukar menjadi tunai atau dipindahkan kepada pengguna lain.
41
+ * **Tarikh Luput:** AuraCoins mungkin mempunyai tarikh luput. Sila semak baki AuraCoin anda di bahagian "My Account" anda untuk butiran luput tertentu. AuraCoins yang telah luput tidak boleh digunakan.
42
+ * **Bayaran Balik:** Jika pesanan di mana AuraCoins digunakan dibatalkan atau dipulangkan, AuraCoins biasanya akan dikreditkan semula ke akaun anda.
43
+ * **Penggunaan Gabungan:** AuraCoins sering boleh digabungkan dengan baucar promosi, membolehkan penjimatan yang lebih besar.
44
+
45
+ ## 3. Faedah Program Kesetiaan AuraCart
46
+
47
+ Program kesetiaan AuraCart direka untuk meningkatkan pengalaman membeli-belah anda dan memberi ganjaran kepada anda kerana memilih kami.
48
+
49
+ ### Keahlian Berperingkat (Peningkatan Masa Depan)
50
+
51
+ AuraCart merancang untuk memperkenalkan tahap keahlian kesetiaan berperingkat (contohnya, Perak, Emas, Platinum) dengan faedah yang meningkat untuk pelanggan kami yang paling setia. Faedah ini mungkin termasuk:
52
+ * **Kadar Perolehan AuraCoin yang Lebih Tinggi:** Dapatkan lebih banyak AuraCoins bagi setiap dolar yang dibelanjakan.
53
+ * **Baucar Eksklusif:** Akses kepada baucar dan diskaun istimewa.
54
+ * **Sokongan Pelanggan Keutamaan:** Bantuan dipercepatkan daripada pasukan sokongan kami.
55
+ * **Akses Awal:** Jadilah antara yang pertama mengetahui tentang pelancaran produk baharu atau jualan kilat.
56
+ * **Ganjaran Hari Lahir:** Hadiah istimewa semasa bulan ulang tahun anda.
57
+
58
+ ### Tawaran dan Acara Eksklusif
59
+
60
+ * **Jualan Khas Ahli:** Akses kepada jualan dan promosi eksklusif untuk ahli program kesetiaan.
61
+ * **Tawaran AuraCoin Khas:** Peluang berkala untuk mendapatkan bonus AuraCoins melalui pembelian atau aktiviti tertentu.
62
+ * **Cadangan Peribadi:** Dapatkan cadangan produk yang disesuaikan berdasarkan sejarah membeli-belah dan pilihan anda.
63
+
64
+ ### Pengalaman Dipertingkatkan
65
+
66
+ * **Penebusan Lancar:** Penebusan mudah AuraCoins dan baucar terus di pembayaran.
67
+ * **Penjejakan Telus:** Pantau baki AuraCoin anda, sejarah perolehan, dan sejarah penebusan dalam akaun AuraCart anda.
68
+
69
+ ## 4. Terma Penggunaan Baucar
70
+
71
+ Baucar adalah cara terbaik untuk menjimatkan wang di AuraCart. Walaupun secara amnya dilindungi dalam Panduan Membeli-belah, berikut adalah tumpuan pada terma khusus mereka yang berkaitan dengan promosi.
72
+
73
+ ### Jenis-jenis Baucar
74
+
75
+ * **Baucar AuraCart:** Dikeluarkan oleh AuraCart secara langsung, boleh digunakan di pelbagai penjual dan produk.
76
+ * **Baucar Penjual:** Dikeluarkan oleh penjual atau jenama individu, sah hanya untuk kedai atau produk tertentu mereka di AuraMall.
77
+ * **Baucar Kaedah Pembayaran:** Diskaun yang boleh digunakan apabila menggunakan kaedah pembayaran tertentu, seperti AuraWallet atau kad bank tertentu.
78
+ * **Baucar Penghantaran:** Baucar yang menawarkan diskaun atau yuran penghantaran percuma.
79
+
80
+ ### Syarat Baucar Penting
81
+
82
+ * **Tempoh Sah Laku:** Semua baucar mempunyai tarikh luput. Pastikan anda menggunakannya sebelum ia luput. Baucar yang telah luput tidak boleh diaktifkan semula atau ditebus.
83
+ * **Perbelanjaan Minimum:** Banyak baucar memerlukan jumlah pembelian minimum untuk layak digunakan. Ini akan dinyatakan dengan jelas pada baucar.
84
+ * **Produk/Kategori Khusus:** Baucar mungkin terhad kepada kategori produk tertentu, produk tertentu, atau penjual. Semak bahagian "berkenaan dengan" baucar.
85
+ * **Pengguna Baharu vs. Sedia Ada:** Sesetengah baucar adalah eksklusif untuk pengguna AuraCart baharu, manakala yang lain adalah untuk pelanggan sedia ada.
86
+ * **Satu Penggunaan:** Kebanyakan baucar adalah untuk satu penggunaan setiap pelanggan setiap transaksi.
87
+ * **Tidak Boleh Ditindan (Umumnya):** Walaupun anda sering boleh menggabungkan baucar dengan penebusan AuraCoin, anda biasanya tidak boleh menggunakan beberapa baucar pada satu pesanan. Sistem AuraCart biasanya akan menggunakan baucar terbaik yang tersedia jika anda mempunyai beberapa baucar yang layak dikumpul.
88
+ * **Bayaran Balik dan Pembatalan:**
89
+ * Jika pesanan menggunakan baucar dibatalkan atau dipulangkan, jumlah baucar itu sendiri secara amnya tidak akan dikembalikan atau dikeluarkan semula.
90
+ * Jumlah yang anda *bayar* selepas diskaun baucar akan dikembalikan.
91
+ * Sentiasa rujuk kepada terma dan syarat khusus setiap baucar sebelum menggunakannya.
92
+
93
+ ### Cara Mengumpul Baucar
94
+
95
+ * **Sepanduk Promosi:** Cari baucar yang dipaparkan dengan jelas di halaman utama AuraCart, halaman kategori, atau semasa kempen khas.
96
+ * **Kedai Penjual:** Lawati halaman kedai AuraMall penjual kegemaran anda untuk mencari baucar eksklusif mereka.
97
+ * **Pemberitahuan:** Perhatikan pemberitahuan aplikasi AuraCart dan e-mel untuk tawaran baucar yang diperibadikan.
98
+ * **Pusat Baucar:** AuraCart biasanya mempunyai bahagian "Pusat Baucar" atau "Baucar Saya" yang khusus dalam akaun anda di mana anda boleh melayari dan mengumpul baucar yang tersedia.
99
+
100
+ Dengan memahami dan menggunakan AuraCoins serta baucar, anda boleh memaksimumkan penjimatan anda dan menikmati pengalaman membeli-belah yang lebih bermanfaat di AuraCart.
knowledge_base/v2_multilingual/06_seller_guide_basics_en.md ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Basics for Sellers
2
+
3
+ Welcome to AuraCart's seller community! This document provides an essential guide for new sellers looking to establish their presence on AuraMall, covering registration, product listing, understanding fees, and managing your first orders.
4
+
5
+ ## 1. How to Register as a Seller
6
+
7
+ Becoming a seller on AuraCart is a straightforward process, opening your business to a vast customer base across Southeast Asia.
8
+
9
+ ### Eligibility Requirements
10
+
11
+ To register as an AuraCart seller, you typically need:
12
+ * **Business Registration:** A valid business registration or company license (e.g., Sole Proprietorship, Partnership, Private Limited Company) in the country where you operate and plan to sell. Individual sellers may be allowed for certain product categories or initial stages, but business registration is highly recommended for full features.
13
+ * **Valid Identification:** A copy of your official identification (e.g., National ID, Passport) for verification purposes.
14
+ * **Bank Account:** A local bank account in your business name for receiving payouts.
15
+ * **Contact Information:** A valid email address and mobile number.
16
+
17
+ ### Step-by-Step Registration Process
18
+
19
+ 1. **Visit the Seller Center:** Navigate to the AuraCart Seller Center website (e.g., seller.auracart.com) or download the AuraCart Seller App.
20
+ 2. **Click "Register" / "Become a Seller":** Locate and click the registration button.
21
+ 3. **Choose Account Type:** Select whether you are registering as an "Individual Seller" (if applicable) or "Business Seller." Business accounts unlock more features.
22
+ 4. **Provide Basic Information:** Enter your email address and mobile number. An OTP will be sent for verification.
23
+ 5. **Set Up Shop Name:** Choose a unique and professional name for your AuraMall shop. This name will be visible to buyers.
24
+ 6. **Upload Documents:** Upload scanned copies or clear photos of your required business registration documents and identification for verification.
25
+ 7. **Bank Account Details:** Provide your bank account information for payouts. Ensure the bank account name matches your registered business name.
26
+ 8. **Agree to Terms:** Read and accept AuraCart's Seller Terms and Conditions, Privacy Policy, and Platform Policies.
27
+ 9. **Submit for Review:** Your application will be submitted for review by the AuraCart team. This process typically takes 1-3 business days.
28
+ 10. **Activation:** Once approved, you will receive a confirmation email, and your seller account will be activated. You can then log in to the Seller Center to set up your shop and start listing products.
29
+
30
+ ## 2. Listing Your First Product
31
+
32
+ Once your seller account is active, you can begin populating your AuraMall shop with products.
33
+
34
+ ### Preparing Your Product Information
35
+
36
+ Before you start listing, gather the following for each product:
37
+ * **High-Quality Images:** At least 3-5 clear, well-lit images showing the product from different angles, including lifestyle shots if possible. AuraCart recommends specific image dimensions and formats.
38
+ * **Product Title:** A clear, concise, and keyword-rich title (e.g., "Brand Name Model Name - Key Feature - Color").
39
+ * **Detailed Description:** A comprehensive description highlighting features, benefits, specifications, materials, and any relevant usage instructions. Use bullet points for readability.
40
+ * **Category:** The most appropriate category and sub-category for your product.
41
+ * **Price:** Your selling price.
42
+ * **Stock/Inventory:** The number of units available.
43
+ * **SKU (Stock Keeping Unit):** Your internal product identifier (optional but recommended).
44
+ * **Variations (if applicable):** Sizes, colors, models, etc., and their respective stock and prices.
45
+ * **Weight & Dimensions:** Accurate weight and dimensions of the packaged item, crucial for shipping cost calculation.
46
+ * **Brand:** The brand of the product.
47
+ * **Warranty Information:** Details about any warranty offered.
48
+
49
+ ### Steps to List a Product
50
+
51
+ 1. **Log in to Seller Center:** Access your AuraCart Seller Center.
52
+ 2. **Navigate to "Products" > "Add New Product":** Locate the product management section.
53
+ 3. **Enter Basic Information:** Fill in the product title and select the correct category. AuraCart's system may suggest categories based on your title.
54
+ 4. **Upload Images:** Drag and drop or upload your high-quality product images.
55
+ 5. **Provide Details:** Fill in the product description, brand, weight, dimensions, and other specifications.
56
+ 6. **Set Pricing and Inventory:** Enter your selling price, original price (for showing discounts), and available stock.
57
+ 7. **Add Variations (if needed):** If your product has different sizes, colors, or styles, add them here with their respective prices and stock levels.
58
+ 8. **Shipping Information:** Confirm the package weight and dimensions. This helps AuraCart calculate shipping fees accurately.
59
+ 9. **Publish:** Review all details carefully. Once satisfied, click "Publish" or "Save and Publish." Your product will then appear on AuraMall, usually after a quick review.
60
+
61
+ ## 3. Understanding Platform Fees
62
+
63
+ AuraCart operates on a transparent fee structure. It's crucial to understand these fees to price your products competitively and accurately calculate your profit margins.
64
+
65
+ ### Types of Fees
66
+
67
+ * **Commission Fee:**
68
+ * **Definition:** A percentage of the product's selling price (excluding shipping fees) charged by AuraCart for each successful sale.
69
+ * **Rate:** Commission rates vary by product category. High-value or fast-moving consumer goods may have lower commission, while specialized items might have higher rates. Specific rates are available in your Seller Center's "Fee Structure" section.
70
+ * **AuraMall vs. Regular Sellers:** Premium AuraMall sellers (official brands, authorized distributors) may have different commission structures or agreement terms.
71
+ * **Payment Gateway Fee:**
72
+ * **Definition:** A small percentage fee charged by payment processors for handling online transactions (e.g., credit card, AuraWallet, bank transfers).
73
+ * **Rate:** Typically a small percentage (e.g., 1-3%) of the total transaction amount.
74
+ * **Shipping Fee (Seller's Portion):**
75
+ * **Definition:** While buyers pay for shipping, sellers are often responsible for accurate package weight and dimensions. If these are incorrect, leading to undercharging the buyer, the difference may be charged back to the seller. AuraCart's integrated logistics ensure transparent shipping costs.
76
+ * **Optional Service Fees:**
77
+ * **Promotional Tools:** Fees for using AuraCart's optional marketing and advertising tools (e.g., sponsored ads, voucher creation). These are elective.
78
+ * **Fulfillment Services:** If you opt for AuraCart's fulfillment services (e.g., warehousing, pick-and-pack), corresponding fees will apply.
79
+
80
+ ### Fee Calculation Example (Illustrative)
81
+
82
+ * Product Price: $100
83
+ * Commission Rate: 5% = $5.00
84
+ * Payment Gateway Fee: 2% of $100 = $2.00
85
+ * **Net Payout to Seller:** $100 - $5.00 - $2.00 = $93.00 (Excluding shipping, if applicable)
86
+
87
+ ### Payout Schedule
88
+
89
+ * AuraCart typically processes seller payouts on a regular schedule (e.g., weekly or bi-weekly).
90
+ * Payouts cover confirmed, delivered orders, usually after the buyer's return window has closed, to ensure funds are not clawed back due to returns/refunds.
91
+ * You can view your transaction history and payout reports in your Seller Center.
92
+
93
+ ## 4. Managing Orders
94
+
95
+ Efficient order management is crucial for good seller performance and customer satisfaction.
96
+
97
+ ### New Order Notifications
98
+
99
+ * **Real-time Alerts:** You will receive immediate notifications via the AuraCart Seller App, email, and within the Seller Center dashboard when a new order is placed.
100
+ * **Dashboard Overview:** Your Seller Center dashboard provides a clear overview of new orders, pending shipments, and orders awaiting action.
101
+
102
+ ### Order Processing Steps
103
+
104
+ 1. **Review Order Details:** Carefully check the product, quantity, buyer's shipping address, and any specific notes from the buyer.
105
+ 2. **Prepare Item:** Pick and carefully pack the item(s) according to AuraCart's packaging guidelines. Ensure adequate protection to prevent damage during transit.
106
+ 3. **Print Shipping Label:** Generate and print the shipping label directly from your Seller Center. This label contains tracking information and buyer address details.
107
+ 4. **Handover to Courier:**
108
+ * **Drop-off:** Drop off the packaged item at a designated AuraCart logistics partner's collection point.
109
+ * **Pickup:** Schedule a pickup from your location if this service is available in your area and for your shop.
110
+ 5. **Update Status:** Ensure the order status is updated to "Shipped" or "Ready for Pickup/Drop-off" in the Seller Center once the package is ready for courier collection. The tracking information will automatically be updated for the buyer.
111
+ 6. **Monitor Delivery:** Keep an eye on the tracking status until the order is marked as "Delivered."
112
+
113
+ ### Dealing with Order Issues
114
+
115
+ * **Cancellations:**
116
+ * **Buyer Initiated:** Buyers can cancel orders before shipment. If an order is cancelled, do not ship it.
117
+ * **Seller Initiated:** In rare cases (e.g., out of stock), you may need to cancel an order. Always communicate promptly with the buyer and select a valid reason. Excessive seller-initiated cancellations negatively impact your performance rating.
118
+ * **Returns/Refunds:**
119
+ * **Notification:** You will be notified via Seller Center if a buyer initiates a return request.
120
+ * **Review and Respond:** Review the buyer's reason and evidence, then respond within the stipulated time frame (e.g., 2-3 business days) to approve, reject, or request more information.
121
+ * **Inspection:** Once the returned item is received, inspect it according to AuraCart's Returns Policy.
122
+ * **Action:** Process the refund or reject the return based on the inspection outcome and AuraCart policy.
123
+
124
+ By mastering these basics, you can effectively launch and grow your business on AuraCart, providing a positive experience for your customers.
knowledge_base/v2_multilingual/06_seller_guide_basics_my.md ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Asas untuk Penjual
2
+
3
+ Selamat datang ke komuniti penjual AuraCart! Dokumen ini menyediakan panduan penting untuk penjual baharu yang ingin menubuhkan kehadiran mereka di AuraMall, merangkumi pendaftaran, penyenaraian produk, pemahaman yuran, dan pengurusan pesanan pertama anda.
4
+
5
+ ## 1. Cara Mendaftar sebagai Penjual
6
+
7
+ Menjadi penjual di AuraCart adalah proses yang mudah, membuka perniagaan anda kepada pangkalan pelanggan yang luas di seluruh Asia Tenggara.
8
+
9
+ ### Syarat Kelayakan
10
+
11
+ Untuk mendaftar sebagai penjual AuraCart, anda biasanya memerlukan:
12
+ * **Pendaftaran Perniagaan:** Pendaftaran perniagaan atau lesen syarikat yang sah (contohnya, Milikan Tunggal, Perkongsian, Syarikat Sendirian Berhad) di negara tempat anda beroperasi dan merancang untuk menjual. Penjual individu mungkin dibenarkan untuk kategori produk tertentu atau peringkat awal, tetapi pendaftaran perniagaan sangat disyorkan untuk ciri penuh.
13
+ * **Pengenalan Diri Sah:** Salinan pengenalan diri rasmi anda (contohnya, Kad Pengenalan Kebangsaan, Pasport) untuk tujuan pengesahan.
14
+ * **Akaun Bank:** Akaun bank tempatan atas nama perniagaan anda untuk menerima bayaran.
15
+ * **Maklumat Hubungan:** Alamat e-mel dan nombor telefon bimbit yang sah.
16
+
17
+ ### Proses Pendaftaran Langkah demi Langkah
18
+
19
+ 1. **Lawati Pusat Penjual:** Navigasi ke laman web AuraCart Seller Center (contohnya, seller.auracart.com) atau muat turun Aplikasi AuraCart Seller.
20
+ 2. **Klik "Register" / "Become a Seller":** Cari dan klik butang pendaftaran.
21
+ 3. **Pilih Jenis Akaun:** Pilih sama ada anda mendaftar sebagai "Individual Seller" (jika berkenaan) atau "Business Seller." Akaun perniagaan membuka lebih banyak ciri.
22
+ 4. **Berikan Maklumat Asas:** Masukkan alamat e-mel dan nombor telefon bimbit anda. OTP akan dihantar untuk pengesahan.
23
+ 5. **Tetapkan Nama Kedai:** Pilih nama yang unik dan profesional untuk kedai AuraMall anda. Nama ini akan kelihatan kepada pembeli.
24
+ 6. **Muat Naik Dokumen:** Muat naik salinan imbasan atau foto jelas dokumen pendaftaran perniagaan dan pengenalan diri yang diperlukan untuk pengesahan.
25
+ 7. **Butiran Akaun Bank:** Berikan maklumat akaun bank anda untuk bayaran. Pastikan nama akaun bank sepadan dengan nama perniagaan berdaftar anda.
26
+ 8. **Setuju dengan Terma:** Baca dan terima Terma dan Syarat Penjual AuraCart, Dasar Privasi, dan Dasar Platform.
27
+ 9. **Hantar untuk Semakan:** Permohonan anda akan dihantar untuk semakan oleh pasukan AuraCart. Proses ini biasanya mengambil masa 1-3 hari bekerja.
28
+ 10. **Pengaktifan:** Setelah diluluskan, anda akan menerima e-mel pengesahan, dan akaun penjual anda akan diaktifkan. Anda kemudian boleh log masuk ke Seller Center untuk menyediakan kedai anda dan mula menyenaraikan produk.
29
+
30
+ ## 2. Menyenaraikan Produk Pertama Anda
31
+
32
+ Setelah akaun penjual anda aktif, anda boleh mula mengisi kedai AuraMall anda dengan produk.
33
+
34
+ ### Menyediakan Maklumat Produk Anda
35
+
36
+ Sebelum anda mula menyenaraikan, kumpulkan yang berikut untuk setiap produk:
37
+ * **Gambar Berkualiti Tinggi:** Sekurang-kurangnya 3-5 gambar yang jelas, terang menunjukkan produk dari sudut yang berbeza, termasuk gambar gaya hidup jika boleh. AuraCart mengesyorkan dimensi dan format imej tertentu.
38
+ * **Tajuk Produk:** Tajuk yang jelas, ringkas, dan kaya kata kunci (contohnya, "Nama Jenama Nama Model - Ciri Utama - Warna").
39
+ * **Penerangan Terperinci:** Penerangan komprehensif yang menonjolkan ciri-ciri, faedah, spesifikasi, bahan, dan sebarang arahan penggunaan yang relevan. Gunakan poin-poin untuk kemudahan membaca.
40
+ * **Kategori:** Kategori dan sub-kategori yang paling sesuai untuk produk anda.
41
+ * **Harga:** Harga jualan anda.
42
+ * **Stok/Inventori:** Bilangan unit yang tersedia.
43
+ * **SKU (Stock Keeping Unit):** Pengenal pasti produk dalaman anda (pilihan tetapi disyorkan).
44
+ * **Variasi (jika berkenaan):** Saiz, warna, model, dsb., dan stok serta harga masing-masing.
45
+ * **Berat & Dimensi:** Berat dan dimensi tepat item yang dibungkus, penting untuk pengiraan kos penghantaran.
46
+ * **Jenama:** Jenama produk tersebut.
47
+ * **Maklumat Waranti:** Butiran mengenai sebarang waranti yang ditawarkan.
48
+
49
+ ### Langkah-langkah untuk Menyenaraikan Produk
50
+
51
+ 1. **Log masuk ke Seller Center:** Akses AuraCart Seller Center anda.
52
+ 2. **Navigasi ke "Products" > "Add New Product":** Cari bahagian pengurusan produk.
53
+ 3. **Masukkan Maklumat Asas:** Isi tajuk produk dan pilih kategori yang betul. Sistem AuraCart mungkin mencadangkan kategori berdasarkan tajuk anda.
54
+ 4. **Muat Naik Gambar:** Seret dan lepas atau muat naik gambar produk berkualiti tinggi anda.
55
+ 5. **Berikan Butiran:** Isi penerangan produk, jenama, berat, dimensi, dan spesifikasi lain.
56
+ 6. **Tetapkan Harga dan Inventori:** Masukkan harga jualan anda, harga asal (untuk menunjukkan diskaun), dan stok yang tersedia.
57
+ 7. **Tambah Variasi (jika perlu):** Jika produk anda mempunyai saiz, warna, atau gaya yang berbeza, tambahkannya di sini dengan harga dan paras stok masing-masing.
58
+ 8. **Maklumat Penghantaran:** Sahkan berat dan dimensi pakej. Ini membantu AuraCart mengira yuran penghantaran dengan tepat.
59
+ 9. **Terbitkan:** Semak semua butiran dengan teliti. Setelah berpuas hati, klik "Publish" atau "Save and Publish." Produk anda kemudian akan muncul di AuraMall, biasanya selepas semakan ringkas.
60
+
61
+ ## 3. Memahami Yuran Platform
62
+
63
+ AuraCart beroperasi berdasarkan struktur yuran yang telus. Adalah penting untuk memahami yuran ini untuk menetapkan harga produk anda secara kompetitif dan mengira margin keuntungan anda dengan tepat.
64
+
65
+ ### Jenis-jenis Yuran
66
+
67
+ * **Yuran Komisen:**
68
+ * **Definisi:** Peratusan daripada harga jualan produk (tidak termasuk yuran penghantaran) yang dicaj oleh AuraCart untuk setiap jualan yang berjaya.
69
+ * **Kadar:** Kadar komisen berbeza mengikut kategori produk. Barangan bernilai tinggi atau barangan pengguna bergerak pantas mungkin mempunyai komisen yang lebih rendah, manakala barangan khusus mungkin mempunyai kadar yang lebih tinggi. Kadar khusus tersedia di bahagian "Fee Structure" dalam Seller Center anda.
70
+ * **AuraMall vs. Penjual Biasa:** Penjual AuraMall premium (jenama rasmi, pengedar sah) mungkin mempunyai struktur komisen atau terma perjanjian yang berbeza.
71
+ * **Yuran Gerbang Pembayaran:**
72
+ * **Definisi:** Yuran peratusan kecil yang dicaj oleh pemproses pembayaran untuk mengendalikan transaksi dalam talian (contohnya, kad kredit, AuraWallet, pindahan bank).
73
+ * **Kadar:** Biasanya peratusan kecil (contohnya, 1-3%) daripada jumlah transaksi.
74
+ * **Yuran Penghantaran (Bahagian Penjual):**
75
+ * **Definisi:** Walaupun pembeli membayar untuk penghantaran, penjual sering bertanggungjawab untuk berat dan dimensi pakej yang tepat. Jika ini tidak betul, menyebabkan caj kurang kepada pembeli, perbezaan tersebut mungkin dicaj semula kepada penjual. Logistik bersepadu AuraCart memastikan kos penghantaran yang telus.
76
+ * **Yuran Perkhidmatan Pilihan:**
77
+ * **Alat Promosi:** Yuran untuk menggunakan alat pemasaran dan pengiklanan pilihan AuraCart (contohnya, iklan bersponsor, penciptaan baucar). Ini adalah pilihan.
78
+ * **Perkhidmatan Pemenuhan Pesanan:** Jika anda memilih perkhidmatan pemenuhan pesanan AuraCart (contohnya, pergudangan, pick-and-pack), yuran yang sepadan akan dikenakan.
79
+
80
+ ### Contoh Pengiraan Yuran (Ilustratif)
81
+
82
+ * Harga Produk: $100
83
+ * Kadar Komisen: 5% = $5.00
84
+ * Yuran Gerbang Pembayaran: 2% daripada $100 = $2.00
85
+ * **Bayaran Bersih kepada Penjual:** $100 - $5.00 - $2.00 = $93.00 (Tidak termasuk penghantaran, jika berkenaan)
86
+
87
+ ### Jadual Bayaran
88
+
89
+ * AuraCart biasanya memproses bayaran kepada penjual mengikut jadual tetap (contohnya, mingguan atau dua mingguan).
90
+ * Bayaran meliputi pesanan yang disahkan dan dihantar, biasanya selepas tempoh pemulangan pembeli telah ditutup, untuk memastikan dana tidak ditarik balik disebabkan pemulangan/bayaran balik.
91
+ * Anda boleh melihat sejarah transaksi dan laporan bayaran anda di Seller Center anda.
92
+
93
+ ## 4. Menguruskan Pesanan
94
+
95
+ Pengurusan pesanan yang cekap adalah penting untuk prestasi penjual yang baik dan kepuasan pelanggan.
96
+
97
+ ### Pemberitahuan Pesanan Baharu
98
+
99
+ * **Peringatan Masa Nyata:** Anda akan menerima pemberitahuan segera melalui Aplikasi AuraCart Seller, e-mel, dan dalam papan pemuka Seller Center apabila pesanan baharu dibuat.
100
+ * **Gambaran Keseluruhan Papan Pemuka:** Papan pemuka Seller Center anda menyediakan gambaran keseluruhan yang jelas mengenai pesanan baharu, penghantaran yang belum selesai, dan pesanan yang menunggu tindakan.
101
+
102
+ ### Langkah-langkah Pemprosesan Pesanan
103
+
104
+ 1. **Semak Butiran Pesanan:** Periksa dengan teliti produk, kuantiti, alamat penghantaran pembeli, dan sebarang nota khusus daripada pembeli.
105
+ 2. **Sediakan Item:** Pilih dan bungkus item dengan teliti mengikut garis panduan pembungkusan AuraCart. Pastikan perlindungan yang mencukupi untuk mengelakkan kerosakan semasa transit.
106
+ 3. **Cetak Label Penghantaran:** Jana dan cetak label penghantaran terus dari Seller Center anda. Label ini mengandungi maklumat penjejakan dan butiran alamat pembeli.
107
+ 4. **Serahan kepada Kurier:**
108
+ * **Hantar di Pusat:** Hantar item yang dibungkus di pusat pengumpulan rakan kongsi logistik AuraCart yang ditetapkan.
109
+ * **Pengambilan:** Jadualkan pengambilan dari lokasi anda jika perkhidmatan ini tersedia di kawasan anda dan untuk kedai anda.
110
+ 5. **Kemas Kini Status:** Pastikan status pesanan dikemas kini kepada "Shipped" atau "Ready for Pickup/Drop-off" dalam Seller Center sebaik sahaja pakej sedia untuk diambil oleh kurier. Maklumat penjejakan akan dikemas kini secara automatik untuk pembeli.
111
+ 6. **Pantau Penghantaran:** Perhatikan status penjejakan sehingga pesanan ditandakan sebagai "Delivered."
112
+
113
+ ### Menangani Isu Pesanan
114
+
115
+ * **Pembatalan:**
116
+ * **Dimulakan oleh Pembeli:** Pembeli boleh membatalkan pesanan sebelum penghantaran. Jika pesanan dibatalkan, jangan hantar.
117
+ * **Dimulakan oleh Penjual:** Dalam kes yang jarang berlaku (contohnya, kehabisan stok), anda mungkin perlu membatalkan pesanan. Sentiasa berkomunikasi dengan segera dengan pembeli dan pilih sebab yang sah. Pembatalan yang terlalu banyak yang dimulakan oleh penjual akan menjejaskan penilaian prestasi anda secara negatif.
118
+ * **Pemulangan/Bayaran Balik:**
119
+ * **Pemberitahuan:** Anda akan dimaklumkan melalui Seller Center jika pembeli memulakan permintaan pemulangan.
120
+ * **Semak dan Balas:** Semak sebab dan bukti pembeli, kemudian balas dalam tempoh masa yang ditetapkan (contohnya, 2-3 hari bekerja) untuk meluluskan, menolak, atau meminta maklumat lanjut.
121
+ * **Pemeriksaan:** Setelah item yang dipulangkan diterima, periksa ia mengikut Dasar Pemulangan AuraCart.
122
+ * **Tindakan:** Proses bayaran balik atau tolak pemulangan berdasarkan hasil pemeriksaan dan dasar AuraCart.
123
+
124
+ Dengan menguasai asas-asas ini, anda boleh melancarkan dan mengembangkan perniagaan anda di AuraCart dengan berkesan, memberikan pengalaman positif kepada pelanggan anda.
knowledge_base/v2_multilingual/07_seller_guide_advanced_en.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Advanced Seller Tools
2
+
3
+ This document provides an in-depth guide for AuraCart sellers to leverage advanced tools available in the Seller Center. Mastering these features will help you boost sales, optimize operations, and enhance customer satisfaction on AuraMall.
4
+
5
+ ## 1. Using AuraCart's Marketing Tools
6
+
7
+ AuraCart provides a suite of marketing tools to help sellers increase product visibility, attract more buyers, and drive conversions.
8
+
9
+ ### 1.1 Sponsored Product Ads
10
+
11
+ Sponsored Product Ads allow your products to appear prominently in search results and on relevant product pages, reaching buyers actively looking for items like yours.
12
+
13
+ * **How They Work:** You bid on keywords relevant to your products. When a buyer searches for those keywords, your sponsored ad may appear at the top or in designated ad slots. You pay only when a buyer clicks on your ad (Cost-Per-Click).
14
+ * **Campaign Setup:**
15
+ 1. **Access:** In Seller Center, navigate to "Marketing Center" > "Sponsored Ads."
16
+ 2. **Campaign Type:** Choose between "Auto Campaigns" (AuraCart's AI optimizes targeting) or "Manual Campaigns" (you select keywords and bids).
17
+ 3. **Ad Group & Products:** Select the products you want to promote within an ad group.
18
+ 4. **Budget & Duration:** Set your daily or total budget and campaign duration.
19
+ 5. **Keywords & Bids (Manual):** For manual campaigns, research and select relevant keywords. Set competitive bids for each keyword. AuraCart provides keyword suggestions and bid estimates.
20
+ * **Targeting Options:** Target specific demographics, locations, or even interests to reach the most relevant audience.
21
+ * **Monitoring & Optimization:** Regularly review your ad performance (impressions, clicks, conversion rate, ROI) in the ad dashboard. Adjust bids, keywords, and budgets to optimize campaign effectiveness.
22
+
23
+ ### 1.2 Vouchers and Promotions
24
+
25
+ Create various types of vouchers and promotions to incentivize purchases and drive sales for your AuraMall shop.
26
+
27
+ * **Seller Vouchers:**
28
+ * **Creation:** In "Marketing Center," select "Vouchers." Define the discount type (fixed amount, percentage off), minimum spend, validity period, and products/categories it applies to.
29
+ * **Visibility:** Vouchers can be displayed on your shop page, product pages, or distributed via chat.
30
+ * **Bundle Deals:** Offer discounts when buyers purchase a specific combination of your products (e.g., "Buy 2, Get 10% Off").
31
+ * **Flash Sales:** Participate in AuraCart's platform-wide flash sales or create your own limited-time, high-discount promotions to create urgency and drive impulse buys. Ensure you have sufficient stock.
32
+ * **Follower Vouchers:** Encourage new followers to your shop by offering exclusive vouchers when they follow your AuraMall store.
33
+ * **Promotion Planning:** Plan your promotions strategically, aligning them with AuraCart's major campaign periods (e.g., 11.11, payday sales) for maximum impact.
34
+
35
+ ### 1.3 Shop Decorations & Livestreaming (AuraLive)
36
+
37
+ Enhance your brand presence and engage buyers with rich content.
38
+
39
+ * **Shop Decorations:** Customize your AuraMall store page using various templates and modules (banners, product grids, videos) to create an attractive and professional storefront that reflects your brand identity. A well-designed shop page encourages longer browsing times and higher conversion rates.
40
+ * **AuraLive (Livestreaming):** Host live video sessions directly within the AuraCart app to showcase products, demonstrate usage, answer live questions, and offer exclusive flash deals.
41
+ * **Engagement:** Interact directly with potential buyers, building trust and rapport.
42
+ * **Sales:** Drive immediate sales through "add-to-cart" links within the livestream.
43
+ * **Preparation:** Plan your content, prepare product samples, and ensure good lighting and audio quality. Promote your AuraLive sessions in advance.
44
+
45
+ ### 1.4 Affiliate Marketing Program (Seller Side)
46
+
47
+ Leverage AuraCart's network of affiliates (influencers, content creators) to promote your products.
48
+
49
+ * **Enabling Products:** Opt-in specific products for the affiliate program in your Seller Center.
50
+ * **Commission Rate:** Set a competitive commission rate for affiliates for each successful sale they drive.
51
+ * **Tracking:** AuraCart provides detailed tracking and reporting on affiliate-driven sales, allowing you to see the ROI of your affiliate efforts.
52
+ * **Increased Reach:** This program extends your marketing reach beyond your direct efforts, tapping into diverse audiences.
53
+
54
+ ## 2. Understanding Seller Performance Analytics
55
+
56
+ AuraCart's Seller Center provides robust analytics to help you monitor your shop's performance, identify strengths, and pinpoint areas for improvement.
57
+
58
+ ### 2.1 Key Performance Indicators (KPIs)
59
+
60
+ * **Sales Volume:** Total number of units sold and total revenue.
61
+ * **Conversion Rate:** Percentage of visitors who make a purchase. Indicates the effectiveness of your product listings and promotions.
62
+ * **Average Order Value (AOV):** The average amount spent per order. Strategies like bundles and upsells can increase AOV.
63
+ * **Unique Visitors:** Number of distinct users who visited your shop or product pages.
64
+ * **Product Views:** Number of times your product pages were viewed.
65
+ * **Add-to-Cart Rate:** Percentage of product views that result in an item being added to the cart.
66
+
67
+ ### 2.2 Operational Performance
68
+
69
+ * **Shipment Lead Time:** Average time from order confirmation to package handover to the courier. Crucial for customer satisfaction.
70
+ * **Cancellation Rate:** Percentage of orders cancelled (seller-initiated or buyer-initiated due to seller issues like stock-out). Aim for a low cancellation rate.
71
+ * **Return Rate:** Percentage of orders returned. High return rates can indicate product quality issues or inaccurate descriptions.
72
+ * **Late Shipment Rate:** Percentage of orders shipped past the promised timeframe.
73
+
74
+ ### 2.3 Customer Satisfaction Metrics
75
+
76
+ * **Seller Rating:** Average rating given by buyers to your shop. A high rating (e.g., 4.8 stars or above) is vital for trust and visibility.
77
+ * **Chat Response Rate (CRR):** Percentage of buyer inquiries you respond to within a set timeframe. Fast responses improve customer satisfaction.
78
+ * **Chat Response Time (CRT):** Average time taken to respond to buyer messages.
79
+ * **Negative Review Percentage:** Percentage of orders that receive low ratings or negative feedback.
80
+
81
+ ### 2.4 Accessing and Interpreting Data
82
+
83
+ 1. **Seller Center Dashboard:** Your main dashboard provides a quick overview of key metrics, alerts, and pending tasks.
84
+ 2. **Business Insights / Analytics Tab:** Navigate to this section in Seller Center for detailed reports.
85
+ 3. **Report Types:**
86
+ * **Sales Report:** Break down sales by product, category, date, etc.
87
+ * **Traffic Report:** Understand where your buyers come from (search, category, ads).
88
+ * **Product Performance Report:** Analyze individual product performance, identifying bestsellers and underperforming items.
89
+ * **Operational Performance Report:** Detailed view of your shipping, cancellation, and return metrics.
90
+ * **Customer Service Report:** Insights into your chat performance and customer feedback.
91
+ 4. **Actionable Insights:** Use the data to make informed decisions:
92
+ * Identify slow-moving products and consider promotions.
93
+ * Improve product descriptions or images if conversion rates are low.
94
+ * Optimize operational processes to reduce lead times and cancellations.
95
+ * Address negative feedback and improve customer service.
96
+
97
+ ## 3. Managing Customer Reviews
98
+
99
+ Customer reviews are vital for building trust and influencing purchasing decisions on AuraMall. Active and professional management of reviews is essential.
100
+
101
+ ### 3.1 Importance of Reviews
102
+
103
+ * **Credibility & Trust:** High ratings and positive reviews build buyer confidence in your products and shop.
104
+ * **SEO & Visibility:** Products with good reviews often rank higher in search results.
105
+ * **Buyer Insights:** Reviews provide valuable feedback on product quality, accuracy of description, and delivery experience.
106
+
107
+ ### 3.2 Responding to Reviews
108
+
109
+ Always respond to reviews, both positive and negative, in a professional and constructive manner.
110
+
111
+ * **For Positive Reviews (4-5 stars):**
112
+ * **Thank the Customer:** Express gratitude for their purchase and positive feedback.
113
+ * **Personalize:** Mention specific details if applicable (e.g., "Glad you enjoyed the color!").
114
+ * **Encourage Repeat Business:** "We look forward to serving you again!"
115
+ * **For Negative Reviews (1-3 stars):**
116
+ * **Apologize Sincerely:** Acknowledge the customer's dissatisfaction. "We are truly sorry to hear that you had this experience."
117
+ * **Empathize:** Show understanding for their frustration.
118
+ * **Offer Solution/Next Steps:** If the issue is solvable (e.g., defective item), suggest contacting customer support or direct messaging for resolution. "Please contact our customer service team via chat so we can assist you further."
119
+ * **Learn from Feedback:** Internalize the feedback to improve your product or service.
120
+ * **Maintain Professionalism:** Avoid argumentative or defensive tones.
121
+ * **Response Guidelines:**
122
+ * **Timeliness:** Respond promptly, ideally within 24-48 hours.
123
+ * **Conciseness:** Keep responses clear and to the point.
124
+ * **Professional Language:** Always use polite and respectful language.
125
+ * **No Personal Information:** Never share private details of the customer or your business in public responses.
126
+
127
+ ### 3.3 Reporting Inappropriate Reviews
128
+
129
+ AuraCart has strict community guidelines. You can report reviews that violate these policies.
130
+
131
+ * **When to Report:** Report reviews that contain:
132
+ * Hate speech, obscenities, or discrimination.
133
+ * Personal attacks or harassment.
134
+ * Spam or promotional content unrelated to the product/service.
135
+ * False or misleading information intended to harm your business maliciously.
136
+ * Disclosure of personal information.
137
+ * Content unrelated to the product or delivery experience (e.g., only commenting on courier service without product mention).
138
+ * **How to Report:**
139
+ 1. In Seller Center, navigate to "Product Ratings & Reviews."
140
+ 2. Find the review you wish to report.
141
+ 3. Click on the "Report" or "Dispute" option next to the review.
142
+ 4. Select the reason for reporting and provide clear evidence or explanation.
143
+ * **AuraCart Review:** AuraCart's moderation team will review your report and take appropriate action if the review violates guidelines.
144
+
145
+ ### 3.4 Encouraging Positive Reviews
146
+
147
+ * **Excellent Service:** The best way to get positive reviews is to consistently provide high-quality products and exceptional customer service.
148
+ * **Timely Shipping:** Fast and reliable delivery significantly influences buyer satisfaction.
149
+ * **Accurate Descriptions:** Ensure your product listings are accurate and detailed to manage buyer expectations.
150
+ * **Gentle Reminders:** After a successful delivery, AuraCart's system may automatically prompt buyers for a review. You can also include a polite note in your packaging asking for feedback.
151
+ * **Address Issues Proactively:** Resolve any customer issues or complaints quickly and professionally *before* they turn into negative public reviews.
152
+
153
+ By utilizing these advanced tools, you can optimize your AuraCart store for growth, efficiency, and sustained success.
knowledge_base/v2_multilingual/07_seller_guide_advanced_my.md ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Panduan Terperinci Penjual
2
+
3
+ Dokumen ini menyediakan panduan mendalam untuk penjual AuraCart bagi memanfaatkan alat canggih yang tersedia di Seller Center. Menguasai ciri-ciri ini akan membantu anda meningkatkan jualan, mengoptimumkan operasi, dan meningkatkan kepuasan pelanggan di AuraMall.
4
+
5
+ ## 1. Menggunakan Alat Pemasaran AuraCart
6
+
7
+ AuraCart menyediakan pelbagai alat pemasaran untuk membantu penjual meningkatkan keterlihatan produk, menarik lebih ramai pembeli, dan mendorong penukaran.
8
+
9
+ ### 1.1 Iklan Produk Bersponsor
10
+
11
+ Iklan Produk Bersponsor membolehkan produk anda muncul dengan jelas dalam hasil carian dan di halaman produk yang relevan, mencapai pembeli yang aktif mencari item seperti anda.
12
+
13
+ * **Bagaimana Ia Berfungsi:** Anda membida kata kunci yang relevan dengan produk anda. Apabila pembeli mencari kata kunci tersebut, iklan bersponsor anda mungkin muncul di bahagian atas atau di slot iklan yang ditetapkan. Anda hanya membayar apabila pembeli mengklik iklan anda (Kos Per Klik).
14
+ * **Persediaan Kempen:**
15
+ 1. **Akses:** Di Seller Center, navigasi ke "Marketing Center" > "Sponsored Ads."
16
+ 2. **Jenis Kempen:** Pilih antara "Auto Campaigns" (AI AuraCart mengoptimumkan sasaran) atau "Manual Campaigns" (anda memilih kata kunci dan bidaan).
17
+ 3. **Kumpulan Iklan & Produk:** Pilih produk yang ingin anda promosikan dalam kumpulan iklan.
18
+ 4. **Bajet & Tempoh:** Tetapkan bajet harian atau keseluruhan anda dan tempoh kempen.
19
+ 5. **Kata Kunci & Bidaan (Manual):** Untuk kempen manual, selidik dan pilih kata kunci yang relevan. Tetapkan bidaan yang kompetitif untuk setiap kata kunci. AuraCart menyediakan cadangan kata kunci dan anggaran bidaan.
20
+ * **Pilihan Sasaran:** Sasar demografi, lokasi, atau minat tertentu untuk mencapai audiens yang paling relevan.
21
+ * **Pemantauan & Pengoptimuman:** Semak prestasi iklan anda secara berkala (tayangan, klik, kadar penukaran, ROI) dalam papan pemuka iklan. Laraskan bidaan, kata kunci, dan bajet untuk mengoptimumkan keberkesanan kempen.
22
+
23
+ ### 1.2 Baucar dan Promosi
24
+
25
+ Cipta pelbagai jenis baucar dan promosi untuk mendorong pembelian dan meningkatkan jualan untuk kedai AuraMall anda.
26
+
27
+ * **Baucar Penjual:**
28
+ * **Penciptaan:** Di "Marketing Center," pilih "Vouchers." Takrifkan jenis diskaun (jumlah tetap, peratusan diskaun), perbelanjaan minimum, tempoh sah laku, dan produk/kategori yang terpakai.
29
+ * **Keterlihatan:** Baucar boleh dipaparkan di halaman kedai anda, halaman produk, atau diedarkan melalui sembang.
30
+ * **Tawaran Kombo:** Tawarkan diskaun apabila pembeli membeli kombinasi produk anda yang tertentu (contohnya, "Beli 2, Dapatkan Diskaun 10%").
31
+ * **Jualan Kilat:** Sertai jualan kilat di seluruh platform AuraCart atau cipta promosi diskaun tinggi masa terhad anda sendiri untuk mencipta desakan dan mendorong pembelian impuls. Pastikan anda mempunyai stok yang mencukupi.
32
+ * **Baucar Pengikut:** Galakkan pengikut baharu ke kedai anda dengan menawarkan baucar eksklusif apabila mereka mengikuti kedai AuraMall anda.
33
+ * **Perancangan Promosi:** Rancang promosi anda secara strategik, selaraskannya dengan tempoh kempen utama AuraCart (contohnya, 11.11, jualan gaji) untuk impak maksimum.
34
+
35
+ ### 1.3 Hiasan Kedai & Penstriman Langsung (AuraLive)
36
+
37
+ Tingkatkan kehadiran jenama anda dan libatkan pembeli dengan kandungan yang kaya.
38
+
39
+ * **Hiasan Kedai:** Sesuaikan halaman kedai AuraMall anda menggunakan pelbagai templat dan modul (sepanduk, grid produk, video) untuk mencipta etalase yang menarik dan profesional yang mencerminkan identiti jenama anda. Halaman kedai yang direka dengan baik menggalakkan masa melayari yang lebih lama dan kadar penukaran yang lebih tinggi.
40
+ * **AuraLive (Penstriman Langsung):** Anjurkan sesi video langsung terus dalam aplikasi AuraCart untuk mempamerkan produk, menunjukkan penggunaan, menjawab soalan langsung, dan menawarkan tawaran kilat eksklusif.
41
+ * **Penglibatan:** Berinteraksi terus dengan pembeli berpotensi, membina kepercayaan dan hubungan.
42
+ * **Jualan:** Dorong jualan segera melalui pautan "tambah ke troli" dalam penstriman langsung.
43
+ * **Persediaan:** Rancang kandungan anda, sediakan sampel produk, dan pastikan pencahayaan dan kualiti audio yang baik. Promosikan sesi AuraLive anda lebih awal.
44
+
45
+ ### 1.4 Program Pemasaran Afiliat (Sisi Penjual)
46
+
47
+ Manfaatkan rangkaian afiliat AuraCart (pengaruh, pencipta kandungan) untuk mempromosikan produk anda.
48
+
49
+ * **Mendayakan Produk:** Pilih produk tertentu untuk program afiliat di Seller Center anda.
50
+ * **Kadar Komisen:** Tetapkan kadar komisen yang kompetitif untuk afiliat bagi setiap jualan berjaya yang mereka dorong.
51
+ * **Penjejakan:** AuraCart menyediakan penjejakan dan pelaporan terperinci mengenai jualan yang didorong oleh afiliat, membolehkan anda melihat ROI usaha afiliat anda.
52
+ * **Jangkauan Peningkatan:** Program ini meluaskan jangkauan pemasaran anda di luar usaha langsung anda, menembusi pelbagai audiens.
53
+
54
+ ## 2. Memahami Analitik Prestasi Penjual
55
+
56
+ Seller Center AuraCart menyediakan analitik yang kukuh untuk membantu anda memantau prestasi kedai anda, mengenal pasti kekuatan, dan mengenal pasti bidang untuk penambahbaikan.
57
+
58
+ ### 2.1 Petunjuk Prestasi Utama (KPI)
59
+
60
+ * **Jumlah Jualan:** Jumlah unit yang dijual dan jumlah pendapatan.
61
+ * **Kadar Penukaran:** Peratusan pelawat yang membuat pembelian. Menunjukkan keberkesanan penyenaraian produk dan promosi anda.
62
+ * **Nilai Pesanan Purata (AOV):** Jumlah purata yang dibelanjakan bagi setiap pesanan. Strategi seperti kombo dan upsell boleh meningkatkan AOV.
63
+ * **Pelawat Unik:** Bilangan pengguna berbeza yang melawat kedai atau halaman produk anda.
64
+ * **Paparan Produk:** Bilangan kali halaman produk anda dilihat.
65
+ * **Kadar Tambah ke Troli:** Peratusan paparan produk yang mengakibatkan item ditambahkan ke troli.
66
+
67
+ ### 2.2 Prestasi Operasi
68
+
69
+ * **Masa Utama Penghantaran:** Purata masa dari pengesahan pesanan hingga penyerahan pakej kepada kurier. Penting untuk kepuasan pelanggan.
70
+ * **Kadar Pembatalan:** Peratusan pesanan yang dibatalkan (dimulakan oleh penjual atau dimulakan oleh pembeli disebabkan isu penjual seperti kehabisan stok). Sasarkan kadar pembatalan yang rendah.
71
+ * **Kadar Pemulangan:** Peratusan pesanan yang dipulangkan. Kadar pemulangan yang tinggi boleh menunjukkan isu kualiti produk atau penerangan yang tidak tepat.
72
+ * **Kadar Penghantaran Lambat:** Peratusan pesanan yang dihantar melebihi tempoh masa yang dijanjikan.
73
+
74
+ ### 2.3 Metrik Kepuasan Pelanggan
75
+
76
+ * **Penilaian Penjual:** Penilaian purata yang diberikan oleh pembeli kepada kedai anda. Penilaian yang tinggi (contohnya, 4.8 bintang atau lebih) adalah penting untuk kepercayaan dan keterlihatan.
77
+ * **Kadar Respons Sembang (CRR):** Peratusan pertanyaan pembeli yang anda balas dalam tempoh masa yang ditetapkan. Respons pantas meningkatkan kepuasan pelanggan.
78
+ * **Masa Respons Sembang (CRT):** Purata masa yang diambil untuk membalas mesej pembeli.
79
+ * **Peratusan Ulasan Negatif:** Peratusan pesanan yang menerima penilaian rendah atau maklum balas negatif.
80
+
81
+ ### 2.4 Mengakses dan Mentafsir Data
82
+
83
+ 1. **Papan Pemuka Seller Center:** Papan pemuka utama anda menyediakan gambaran keseluruhan pantas mengenai metrik utama, amaran, dan tugas yang belum selesai.
84
+ 2. **Tab Wawasan Perniagaan / Analitik:** Navigasi ke bahagian ini di Seller Center untuk laporan terperinci.
85
+ 3. **Jenis Laporan:**
86
+ * **Laporan Jualan:** Pecahan jualan mengikut produk, kategori, tarikh, dsb.
87
+ * **Laporan Trafik:** Fahami dari mana pembeli anda datang (carian, kategori, iklan).
88
+ * **Laporan Prestasi Produk:** Analisis prestasi produk individu, mengenal pasti produk terlaris dan produk yang kurang berprestasi.
89
+ * **Laporan Prestasi Operasi:** Paparan terperinci mengenai metrik penghantaran, pembatalan, dan pemulangan anda.
90
+ * **Laporan Khidmat Pelanggan:** Wawasan mengenai prestasi sembang anda dan maklum balas pelanggan.
91
+ 4. **Wawasan Boleh Tindakan:** Gunakan data untuk membuat keputusan yang bermaklumat:
92
+ * Kenal pasti produk yang bergerak perlahan dan pertimbangkan promosi.
93
+ * Perbaiki penerangan atau gambar produk jika kadar penukaran rendah.
94
+ * Optimumkan proses operasi untuk mengurangkan masa utama dan pembatalan.
95
+ * Tangani maklum balas negatif dan tingkatkan perkhidmatan pelanggan.
96
+
97
+ ## 3. Menguruskan Ulasan Pelanggan
98
+
99
+ Ulasan pelanggan adalah penting untuk membina kepercayaan dan mempengaruhi keputusan pembelian di AuraMall. Pengurusan ulasan yang aktif dan profesional adalah penting.
100
+
101
+ ### 3.1 Kepentingan Ulasan
102
+
103
+ * **Kredibiliti & Kepercayaan:** Penilaian tinggi dan ulasan positif membina keyakinan pembeli terhadap produk dan kedai anda.
104
+ * **SEO & Keterlihatan:** Produk dengan ulasan yang baik sering menduduki ranking lebih tinggi dalam hasil carian.
105
+ * **Wawasan Pembeli:** Ulasan memberikan maklum balas berharga mengenai kualiti produk, ketepatan penerangan, dan pengalaman penghantaran.
106
+
107
+ ### 3.2 Membalas Ulasan
108
+
109
+ Sentiasa balas ulasan, baik positif mahupun negatif, dengan cara yang profesional dan konstruktif.
110
+
111
+ * **Untuk Ulasan Positif (4-5 bintang):**
112
+ * **Ucapkan Terima Kasih kepada Pelanggan:** Nyatakan penghargaan atas pembelian dan maklum balas positif mereka.
113
+ * **Peribadikan:** Sebutkan butiran khusus jika berkenaan (contohnya, "Gembira anda menyukai warna ini!").
114
+ * **Menggalakkan Perniagaan Berulang:** "Kami menantikan untuk melayani anda lagi!"
115
+ * **Untuk Ulasan Negatif (1-3 bintang):**
116
+ * **Mohon Maaf dengan Ikhlas:** Akui ketidakpuasan hati pelanggan. "Kami amat kesal mendengar pengalaman anda ini."
117
+ * **Berempati:** Tunjukkan pemahaman terhadap kekecewaan mereka.
118
+ * **Tawarkan Penyelesaian/Langkah Seterusnya:** Jika isu boleh diselesaikan (contohnya, item rosak), cadangkan menghubungi sokongan pelanggan atau mesej langsung untuk penyelesaian. "Sila hubungi pasukan khidmat pelanggan kami melalui sembang agar kami dapat membantu anda dengan lebih lanjut."
119
+ * **Belajar daripada Maklum Balas:** Gunakan maklum balas tersebut untuk memperbaiki produk atau perkhidmatan anda.
120
+ * **Kekalkan Profesionalisme:** Elakkan nada yang argumentatif atau defensif.
121
+ * **Garis Panduan Respons:**
122
+ * **Ketepatan Masa:** Balas dengan segera, sebaik-baiknya dalam masa 24-48 jam.
123
+ * **Keringkasan:** Kekalkan respons yang jelas dan tepat.
124
+ * **Bahasa Profesional:** Sentiasa gunakan bahasa yang sopan dan hormat.
125
+ * **Tiada Maklumat Peribadi:** Jangan sekali-kali berkongsi butiran peribadi pelanggan atau perniagaan anda dalam respons awam.
126
+
127
+ ### 3.3 Melaporkan Ulasan Tidak Sesuai
128
+
129
+ AuraCart mempunyai garis panduan komuniti yang ketat. Anda boleh melaporkan ulasan yang melanggar dasar ini.
130
+
131
+ * **Bila Melapor:** Laporkan ulasan yang mengandungi:
132
+ * Ucapan kebencian, kata-kata lucah, atau diskriminasi.
133
+ * Serangan peribadi atau gangguan.
134
+ * Spam atau kandungan promosi yang tidak berkaitan dengan produk/perkhidmatan.
135
+ * Maklumat palsu atau mengelirukan yang bertujuan untuk merugikan perniagaan anda secara berniat jahat.
136
+ * Pendedahan maklumat peribadi.
137
+ * Kandungan yang tidak berkaitan dengan produk atau pengalaman penghantaran (contohnya, hanya mengulas perkhidmatan kurier tanpa menyebut produk).
138
+ * **Cara Melapor:**
139
+ 1. Di Seller Center, navigasi ke "Product Ratings & Reviews."
140
+ 2. Cari ulasan yang ingin anda laporkan.
141
+ 3. Klik pada pilihan "Report" atau "Dispute" di sebelah ulasan.
142
+ 4. Pilih sebab pelaporan dan berikan bukti atau penjelasan yang jelas.
143
+ * **Semakan AuraCart:** Pasukan moderasi AuraCart akan menyemak laporan anda dan mengambil tindakan yang sesuai jika ulasan tersebut melanggar garis panduan.
144
+
145
+ ### 3.4 Menggalakkan Ulasan Positif
146
+
147
+ * **Perkhidmatan Cemerlang:** Cara terbaik untuk mendapatkan ulasan positif adalah dengan secara konsisten menyediakan produk berkualiti tinggi dan perkhidmatan pelanggan yang luar biasa.
148
+ * **Penghantaran Tepat Masa:** Penghantaran yang pantas dan boleh dipercayai secara signifikan mempengaruhi kepuasan pembeli.
149
+ * **Penerangan Tepat:** Pastikan penyenaraian produk anda adalah tepat dan terperinci untuk menguruskan jangkaan pembeli.
150
+ * **Peringatan Lembut:** Selepas penghantaran yang berjaya, sistem AuraCart mungkin secara automatik meminta pembeli untuk memberikan ulasan. Anda juga boleh menyertakan nota sopan dalam pembungkusan anda meminta maklum balas.
151
+ * **Menangani Isu Secara Proaktif:** Selesaikan sebarang isu atau aduan pelanggan dengan cepat dan profesional *sebelum* ia bertukar menjadi ulasan negatif di khalayak ramai.
152
+
153
+ Dengan menggunakan alat canggih ini, anda boleh mengoptimumkan kedai AuraCart anda untuk pertumbuhan, kecekapan, dan kejayaan yang berterusan.
knowledge_base/v2_multilingual/08_platform_policies_en.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Platform Policies and Community Guidelines
2
+
3
+ AuraCart is committed to fostering a safe, trustworthy, and fair environment for all users on AuraMall. This document outlines our essential platform policies and community guidelines, covering prohibited items, intellectual property rights, and expected standards for reviews and communication.
4
+
5
+ ## 1. Prohibited and Restricted Items Policy
6
+
7
+ To ensure safety, compliance with regulations, and a reliable marketplace, certain items are strictly prohibited or restricted from being sold on AuraCart.
8
+
9
+ ### 1.1 Prohibited Items
10
+
11
+ These items are **strictly forbidden** from being listed or sold on AuraCart under any circumstances. Listing such items will result in immediate removal, potential account suspension, and reporting to relevant authorities.
12
+
13
+ * **Illegal Drugs and Drug Paraphernalia:** Any illegal substances, controlled narcotics, or instruments used for their consumption.
14
+ * **Weapons and Ammunition:** Firearms, explosives, knives (beyond common kitchen/utility knives), martial arts weapons, and related accessories.
15
+ * **Live Animals:** With the exception of certain regulated pet supplies in specific categories.
16
+ * **Adult/Obscene Material:** Pornographic content, explicit or suggestive materials, or items promoting hate speech or discrimination.
17
+ * **Stolen Goods:** Any items obtained illegally.
18
+ * **Counterfeit and Replica Items:** Any product that infringes on existing trademarks or copyrights, falsely claiming to be an authentic brand (see section 2.1).
19
+ * **Hazardous Materials:** Toxic chemicals, poisons, radioactive materials, or dangerous substances without proper licensing and handling protocols.
20
+ * **Medical Drugs (Prescription & Illicit):** Any pharmaceutical drugs, prescription medications, or unapproved medical devices.
21
+ * **Gambling Devices:** Any tools or machines primarily designed for illegal gambling.
22
+ * **Human Remains & Body Parts:** Including organs, blood, and other bodily fluids.
23
+ * **Government-Issued Documents & IDs:** Passports, driver's licenses, birth certificates, etc.
24
+ * **Burial Artefacts:** Items recovered from grave sites or archaeological excavations.
25
+ * **Embargoed Goods:** Items from countries under international embargo.
26
+
27
+ ### 1.2 Restricted Items
28
+
29
+ These items may be sold but are subject to strict regulations, require specific licenses, or have limitations on quantity or description. Sellers must ensure full compliance with all applicable laws and AuraCart's specific requirements.
30
+
31
+ * **Alcohol:** Sales may be restricted to licensed sellers in specific regions, with age verification upon delivery.
32
+ * **Tobacco Products:** Similar to alcohol, subject to strict age and licensing regulations.
33
+ * **Medicines & Health Supplements (Over-the-Counter):** Must be approved by relevant health authorities and accurately labeled.
34
+ * **Food Products:** Must comply with food safety standards, accurate labeling, and expiry dates. Perishable items may have specific shipping requirements.
35
+ * **Cosmetics & Skincare:** Must be registered with relevant health authorities and adhere to labeling standards.
36
+ * **Software & Digital Goods:** Must be legitimately licensed and not violate intellectual property rights.
37
+ * **Pre-loved/Used Items:** Must be clearly declared as such and meet quality and hygiene standards. Certain categories (e.g., intimate apparel, some electronics) may have stricter rules.
38
+
39
+ ### 1.3 Consequences of Policy Violation
40
+
41
+ * **Item Removal:** Prohibited/restricted listings will be immediately removed.
42
+ * **Account Suspension/Termination:** Repeated or severe violations can lead to temporary or permanent suspension of your seller account.
43
+ * **Legal Action:** AuraCart cooperates with law enforcement and will report illegal activities.
44
+ * **Loss of Payouts:** Funds from sales of prohibited items may be withheld.
45
+
46
+ Sellers are solely responsible for ensuring their listings comply with all applicable local laws, international regulations, and AuraCart's policies.
47
+
48
+ ## 2. Intellectual Property Rights (IPR) Policy
49
+
50
+ AuraCart respects and upholds intellectual property rights. We prohibit the listing and sale of any items that infringe upon trademarks, copyrights, or patents.
51
+
52
+ ### 2.1 Counterfeit and Infringing Goods
53
+
54
+ * **Zero Tolerance:** AuraCart has a zero-tolerance policy against counterfeit products, unauthorized replicas, and items that infringe on trademarks or copyrights.
55
+ * **Examples of Infringement:**
56
+ * Selling fake designer bags, apparel, or electronics bearing a brand's logo without authorization.
57
+ * Selling pirated software, movies, music, or e-books.
58
+ * Using copyrighted images, text, or designs in product listings without permission.
59
+ * Selling patented inventions without license.
60
+ * **Seller Responsibility:** Sellers are responsible for ensuring that all products they list and sell are authentic and do not infringe on any third-party intellectual property rights.
61
+
62
+ ### 2.2 Reporting IPR Violations
63
+
64
+ * **Rights Holders:** If you are an intellectual property rights holder and believe your rights have been violated by a listing on AuraCart, please contact us through our dedicated IPR Infringement Reporting portal in the Seller Center or via our customer support channels.
65
+ * **Required Information:** Provide clear evidence of your IP ownership (e.g., trademark registration, copyright certificate) and specific details of the infringing listings (e.g., product links, seller names).
66
+ * **AuraCart's Action:** Upon valid verification, AuraCart will promptly remove the infringing listings and take appropriate action against the offending seller, which may include account suspension.
67
+
68
+ ### 2.3 Consequences for IPR Infringement
69
+
70
+ * **Listing Removal:** Infringing listings will be immediately removed.
71
+ * **Points Deduction/Penalties:** Sellers may incur penalty points or fines.
72
+ * **Account Suspension/Termination:** Repeated or severe IPR violations will result in the permanent termination of the seller's account.
73
+ * **Legal Liability:** Sellers found guilty of IPR infringement may face legal action from rights holders, independent of AuraCart's actions.
74
+
75
+ ## 3. Community Standards for Reviews and Communication
76
+
77
+ AuraCart fosters a respectful and transparent community. These guidelines apply to all user-generated content, including product reviews, seller ratings, Q&A sections, and direct messages.
78
+
79
+ ### 3.1 Content Guidelines for Reviews and Q&A
80
+
81
+ * **Relevant & Factual:** Reviews and questions should be directly related to the product or the buyer/seller experience with that specific order. Provide factual information and constructive feedback.
82
+ * **Respectful Language:** Use polite, respectful, and appropriate language. Do not use profanity, hate speech, discriminatory remarks, or personal attacks.
83
+ * **No Personal Information:** Do not share personal contact details (phone numbers, email addresses, social media links) of yourself or others.
84
+ * **No Spam/Advertising:** Do not use reviews or Q&A for unsolicited advertising, promotional content, or external links.
85
+ * **Authenticity:** Reviews must be based on genuine purchase experiences. Fake reviews or review manipulation are strictly prohibited.
86
+ * **Photos/Videos:** Images and videos uploaded should be relevant to the product and safe for all audiences. No nudity, violence, or illegal content.
87
+
88
+ ### 3.2 Communication Guidelines (Chat, Q&A)
89
+
90
+ * **Professionalism:** Maintain a professional and courteous tone in all communications between buyers and sellers.
91
+ * **Clarity & Timeliness:** Be clear and concise in your messages. Sellers are expected to respond to buyer inquiries promptly.
92
+ * **Stay On-Platform:** Conduct all official communication and transactions through the AuraCart platform to ensure buyer/seller protection and for dispute resolution purposes. Do not attempt to move conversations or transactions off-platform.
93
+ * **No Harassment/Abuse:** Any form of harassment, intimidation, threats, or abusive language is strictly prohibited.
94
+ * **No Scams/Fraud:** Do not engage in any activity intended to defraud or mislead other users.
95
+ * **Pricing Discussions:** Do not attempt to negotiate prices outside the listed price or established promotional mechanisms.
96
+
97
+ ### 3.3 Consequences of Guideline Violations
98
+
99
+ * **Content Removal:** Violating content (reviews, Q&A, chat messages) will be removed.
100
+ * **Account Penalties:** Users (buyers or sellers) who repeatedly or severely violate community guidelines may face account warnings, temporary suspensions, or permanent bans.
101
+ * **Seller Performance Impact:** For sellers, poor chat response rates, negative reviews (due to unprofessional conduct), or policy violations will negatively impact your seller performance metrics.
102
+
103
+ AuraCart reserves the right to update these policies periodically. It is the responsibility of all users to stay informed and adhere to the latest guidelines to ensure a safe and positive environment for everyone.
knowledge_base/v2_multilingual/08_platform_policies_my.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dasar Platform dan Garis Panduan Komuniti
2
+
3
+ AuraCart komited untuk memupuk persekitaran yang selamat, boleh dipercayai, dan adil untuk semua pengguna di AuraMall. Dokumen ini menggariskan dasar platform dan garis panduan komuniti penting kami, meliputi item terlarang, hak harta intelek, dan standard yang diharapkan untuk ulasan dan komunikasi.
4
+
5
+ ## 1. Dasar Item Terlarang dan Terhad
6
+
7
+ Untuk memastikan keselamatan, pematuhan terhadap peraturan, dan pasaran yang boleh dipercayai, item-item tertentu adalah dilarang keras atau dihadkan daripada dijual di AuraCart.
8
+
9
+ ### 1.1 Item Terlarang
10
+
11
+ Item-item ini **dilarang keras** daripada disenaraikan atau dijual di AuraCart dalam apa jua keadaan. Menyenaraikan item sedemikian akan mengakibatkan pengalihan keluar serta-merta, kemungkinan penggantungan akaun, dan pelaporan kepada pihak berkuasa yang berkaitan.
12
+
13
+ * **Dadah Haram dan Peralatan Dadah:** Sebarang bahan haram, narkotik terkawal, atau instrumen yang digunakan untuk pengambilannya.
14
+ * **Senjata dan Peluru:** Senjata api, bahan letupan, pisau (selain pisau dapur/utiliti biasa), senjata seni mempertahankan diri, dan aksesori berkaitan.
15
+ * **Haiwan Hidup:** Kecuali bekalan haiwan peliharaan terkawal tertentu dalam kategori khusus.
16
+ * **Bahan Dewasa/Lucah:** Kandungan pornografi, bahan eksplisit atau sugestif, atau item yang mempromosikan ucapan kebencian atau diskriminasi.
17
+ * **Barang Curi:** Mana-mana item yang diperoleh secara haram.
18
+ * **Item Tiruan dan Replika:** Mana-mana produk yang melanggar tanda dagangan atau hak cipta sedia ada, secara palsu mendakwa sebagai jenama tulen (lihat seksyen 2.1).
19
+ * **Bahan Berbahaya:** Bahan kimia toksik, racun, bahan radioaktif, atau bahan berbahaya tanpa pelesenan dan protokol pengendalian yang betul.
20
+ * **Ubat Perubatan (Preskripsi & Haram):** Sebarang ubat farmaseutikal, ubat preskripsi, atau peranti perubatan yang tidak diluluskan.
21
+ * **Peranti Perjudian:** Sebarang alat atau mesin yang direka terutamanya untuk perjudian haram.
22
+ * **Mayat Manusia & Bahagian Badan:** Termasuk organ, darah, dan cecair badan lain.
23
+ * **Dokumen & ID Keluaran Kerajaan:** Pasport, lesen memandu, sijil kelahiran, dsb.
24
+ * **Artifak Pengebumian:** Item yang diperoleh dari tapak kubur atau penggalian arkeologi.
25
+ * **Barang Embargo:** Item dari negara di bawah embargo antarabangsa.
26
+
27
+ ### 1.2 Item Terhad
28
+
29
+ Item-item ini boleh dijual tetapi tertakluk kepada peraturan ketat, memerlukan lesen khusus, atau mempunyai batasan kuantiti atau penerangan. Penjual mesti memastikan pematuhan penuh dengan semua undang-undang yang berkenaan dan keperluan khusus AuraCart.
30
+
31
+ * **Alkohol:** Jualan mungkin dihadkan kepada penjual berlesen di wilayah tertentu, dengan pengesahan umur semasa penyerahan.
32
+ * **Produk Tembakau:** Serupa dengan alkohol, tertakluk kepada peraturan umur dan pelesenan yang ketat.
33
+ * **Ubat & Suplemen Kesihatan (Over-the-Counter):** Mesti diluluskan oleh pihak berkuasa kesihatan yang berkaitan dan dilabel dengan tepat.
34
+ * **Produk Makanan:** Mesti mematuhi standard keselamatan makanan, pelabelan yang tepat, dan tarikh luput. Item mudah rosak mungkin mempunyai keperluan penghantaran khusus.
35
+ * **Kosmetik & Penjagaan Kulit:** Mesti didaftarkan dengan pihak berkuasa kesihatan yang berkaitan dan mematuhi standard pelabelan.
36
+ * **Perisian & Barangan Digital:** Mesti dilesenkan secara sah dan tidak melanggar hak harta intelek.
37
+ * **Item Terpakai/Digunakan:** Mesti diisytiharkan dengan jelas sebagai itu dan memenuhi standard kualiti dan kebersihan. Kategori tertentu (contohnya, pakaian intim, beberapa elektronik) mungkin mempunyai peraturan yang lebih ketat.
38
+
39
+ ### 1.3 Akibat Pelanggaran Dasar
40
+
41
+ * **Pengalihan Keluar Item:** Penyenaraian yang dilarang/dihadkan akan segera dialihkan keluar.
42
+ * **Penggantungan/Penamatan Akaun:** Pelanggaran berulang atau teruk boleh menyebabkan penggantungan sementara atau kekal akaun penjual anda.
43
+ * **Tindakan Undang-undang:** AuraCart bekerjasama dengan penguatkuasaan undang-undang dan akan melaporkan aktiviti haram.
44
+ * **Kehilangan Bayaran:** Dana daripada jualan item terlarang mungkin ditahan.
45
+
46
+ Penjual bertanggungjawab sepenuhnya untuk memastikan penyenaraian mereka mematuhi semua undang-undang tempatan yang berkenaan, peraturan antarabangsa, dan dasar AuraCart.
47
+
48
+ ## 2. Dasar Hak Harta Intelek (IPR)
49
+
50
+ AuraCart menghormati dan menegakkan hak harta intelek. Kami melarang penyenaraian dan penjualan mana-mana item yang melanggar tanda dagangan, hak cipta, atau paten.
51
+
52
+ ### 2.1 Barangan Tiruan dan Melanggar Hak
53
+
54
+ * **Toleransi Sifar:** AuraCart mempunyai dasar toleransi sifar terhadap produk tiruan, replika tidak sah, dan item yang melanggar tanda dagangan atau hak cipta.
55
+ * **Contoh Pelanggaran:**
56
+ * Menjual beg, pakaian, atau elektronik berjenama palsu yang menggunakan logo jenama tanpa kebenaran.
57
+ * Menjual perisian, filem, muzik, atau e-buku cetak rompak.
58
+ * Menggunakan imej, teks, atau reka bentuk berhak cipta dalam penyenaraian produk tanpa kebenaran.
59
+ * Menjual ciptaan berpaten tanpa lesen.
60
+ * **Tanggungjawab Penjual:** Penjual bertanggungjawab untuk memastikan semua produk yang mereka senaraikan dan jual adalah tulen dan tidak melanggar mana-mana hak harta intelek pihak ketiga.
61
+
62
+ ### 2.2 Melaporkan Pelanggaran IPR
63
+
64
+ * **Pemilik Hak:** Jika anda adalah pemilik hak harta intelek dan percaya hak anda telah dilanggar oleh penyenaraian di AuraCart, sila hubungi kami melalui portal Pelaporan Pelanggaran IPR kami yang khusus di Seller Center atau melalui saluran sokongan pelanggan kami.
65
+ * **Maklumat Diperlukan:** Berikan bukti jelas pemilikan IP anda (contohnya, pendaftaran tanda dagangan, sijil hak cipta) dan butiran khusus penyenaraian yang melanggar (contohnya, pautan produk, nama penjual).
66
+ * **Tindakan AuraCart:** Setelah pengesahan yang sah, AuraCart akan segera mengalihkan keluar penyenaraian yang melanggar dan mengambil tindakan yang sesuai terhadap penjual yang bersalah, yang mungkin termasuk penggantungan akaun.
67
+
68
+ ### 2.3 Akibat Pelanggaran IPR
69
+
70
+ * **Pengalihan Keluar Penyenaraian:** Penyenaraian yang melanggar akan segera dialihkan keluar.
71
+ * **Potongan Mata/Penalti:** Penjual mungkin dikenakan mata penalti atau denda.
72
+ * **Penggantungan/Penamatan Akaun:** Pelanggaran IPR yang berulang atau teruk akan mengakibatkan penamatan kekal akaun penjual.
73
+ * **Liabiliti Undang-undang:** Penjual yang didapati bersalah melanggar IPR mungkin menghadapi tindakan undang-undang daripada pemilik hak, bebas daripada tindakan AuraCart.
74
+
75
+ ## 3. Standard Komuniti untuk Ulasan dan Komunikasi
76
+
77
+ AuraCart memupuk komuniti yang hormat dan telus. Garis panduan ini terpakai kepada semua kandungan yang dijana pengguna, termasuk ulasan produk, penilaian penjual, bahagian Soal Jawab, dan mesej langsung.
78
+
79
+ ### 3.1 Garis Panduan Kandungan untuk Ulasan dan Soal Jawab
80
+
81
+ * **Relevan & Fakta:** Ulasan dan soalan harus berkaitan secara langsung dengan produk atau pengalaman pembeli/penjual dengan pesanan khusus itu. Berikan maklumat fakta dan maklum balas yang membina.
82
+ * **Bahasa Hormat:** Gunakan bahasa yang sopan, hormat, dan sesuai. Jangan gunakan kata-kata kesat, ucapan kebencian, komen diskriminasi, atau serangan peribadi.
83
+ * **Tiada Maklumat Peribadi:** Jangan berkongsi butiran hubungan peribadi (nombor telefon, alamat e-mel, pautan media sosial) anda atau orang lain.
84
+ * **Tiada Spam/Iklan:** Jangan gunakan ulasan atau Soal Jawab untuk pengiklanan yang tidak diminta, kandungan promosi, atau pautan luaran.
85
+ * **Ketulenan:** Ulasan mesti berdasarkan pengalaman pembelian yang tulen. Ulasan palsu atau manipulasi ulasan adalah dilarang keras.
86
+ * **Foto/Video:** Imej dan video yang dimuat naik harus relevan dengan produk dan selamat untuk semua audiens. Tiada kandungan lucah, keganasan, atau haram.
87
+
88
+ ### 3.2 Garis Panduan Komunikasi (Sembang, Soal Jawab)
89
+
90
+ * **Profesionalisme:** Kekalkan nada yang profesional dan berbudi bahasa dalam semua komunikasi antara pembeli dan penjual.
91
+ * **Kejelasan & Ketepatan Masa:** Berhati-hati dan ringkas dalam mesej anda. Penjual dijangka membalas pertanyaan pembeli dengan segera.
92
+ * **Kekal di Platform:** Lakukan semua komunikasi rasmi dan transaksi melalui platform AuraCart untuk memastikan perlindungan pembeli/penjual dan untuk tujuan penyelesaian pertikaian. Jangan cuba memindahkan perbualan atau transaksi di luar platform.
93
+ * **Tiada Gangguan/Penyalahgunaan:** Sebarang bentuk gangguan, ugutan, ancaman, atau bahasa kasar adalah dilarang keras.
94
+ * **Tiada Penipuan/Penipuan:** Jangan terlibat dalam sebarang aktiviti yang bertujuan untuk menipu atau mengelirukan pengguna lain.
95
+ * **Perbincangan Harga:** Jangan cuba merundingkan harga di luar harga yang disenaraikan atau mekanisme promosi yang ditetapkan.
96
+
97
+ ### 3.3 Akibat Pelanggaran Garis Panduan
98
+
99
+ * **Pengalihan Keluar Kandungan:** Kandungan yang melanggar (ulasan, Soal Jawab, mesej sembang) akan dialihkan keluar.
100
+ * **Penalti Akaun:** Pengguna (pembeli atau penjual) yang berulang kali atau secara serius melanggar garis panduan komuniti mungkin menghadapi amaran akaun, penggantungan sementara, atau larangan kekal.
101
+ * **Impak Prestasi Penjual:** Bagi penjual, kadar respons sembang yang buruk, ulasan negatif (disebabkan tingkah laku tidak profesional), atau pelanggaran dasar akan menjejaskan metrik prestasi penjual anda secara negatif.
102
+
103
+ AuraCart berhak untuk mengemas kini dasar ini secara berkala. Adalah menjadi tanggungjawab semua pengguna untuk sentiasa dimaklumkan dan mematuhi garis panduan terkini bagi memastikan persekitaran yang selamat dan positif untuk semua.
knowledge_base/v2_multilingual/09_customer_support_and_disputes_en.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Customer Support and Dispute Resolution
2
+
3
+ At AuraCart, we are committed to providing excellent customer service and ensuring a fair and efficient process for resolving any issues you may encounter. This document outlines how to contact AuraCart support, the process for resolving order-related disputes, and details our comprehensive Buyer/Seller Protection Program.
4
+
5
+ ## 1. How to Contact AuraCart Support
6
+
7
+ AuraCart offers multiple channels for you to reach our customer support team.
8
+
9
+ ### 1.1 In-App / Website Help Center
10
+
11
+ * **Self-Service:** Our Help Center, accessible through the AuraCart app or website, contains a vast library of frequently asked questions (FAQs) and knowledge base articles (like this one!). Many common queries can be resolved here directly.
12
+ * **Searching for Answers:** Use the search bar within the Help Center to find articles related to your specific issue (e.g., "return status," "AuraWallet top-up").
13
+
14
+ ### 1.2 Live Chat Support
15
+
16
+ * **Availability:** Live chat is typically the fastest way to get assistance from a customer service representative. It's available during specific operating hours, which can be found in the Help Center.
17
+ * **Access:** Look for the "Chat with Us" or "Contact Support" button, usually found within the Help Center or "My Account" section of the app/website.
18
+ * **Connecting with an Agent:** You may first interact with a chatbot that can answer basic questions or direct you to the relevant articles. If your issue requires human assistance, the chatbot will guide you to connect with a live agent.
19
+ * **Information to Prepare:** Have your order ID, relevant screenshots, or specific details of your issue ready to expedite the process.
20
+
21
+ ### 1.3 Email Support
22
+
23
+ * **Non-Urgent Issues:** For less urgent matters or inquiries that require detailed explanations and attachments, email support is available.
24
+ * **How to Email:** Submit a ticket or send an email through the "Contact Us" form in the Help Center.
25
+ * **Response Time:** Email responses typically take 24-48 business hours, depending on query volume.
26
+ * **Include Details:** Always include your AuraCart registered email/phone, order ID (if applicable), and a clear, detailed description of your issue.
27
+
28
+ ### 1.4 Social Media (for General Inquiries)
29
+
30
+ * **Community Engagement:** AuraCart's official social media channels can be used for general inquiries, announcements, and community engagement.
31
+ * **Avoid Sensitive Information:** Do not share personal or sensitive account details via social media DMs. For specific account or order issues, always use the in-app/website chat or email support for security reasons.
32
+
33
+ ## 2. Process for Resolving Issues with Orders
34
+
35
+ AuraCart has a structured process for handling order-related issues, ensuring fairness for both buyers and sellers.
36
+
37
+ ### 2.1 Before Initiating a Formal Dispute
38
+
39
+ * **Contact the Seller First (for non-delivery/item issues):** For issues like a missing item, wrong product received, or a damaged item, it's often best to try and communicate directly with the seller via AuraCart's chat function first. Many issues can be quickly resolved through direct communication.
40
+ * **Provide Evidence:** Always provide clear evidence (photos, videos) if the issue is related to product condition (e.g., damaged, defective, wrong item).
41
+
42
+ ### 2.2 Initiating a Return/Refund Request
43
+
44
+ If direct communication with the seller doesn't resolve the issue, or if the issue is related to product quality/condition, proceed with a formal return/refund request.
45
+
46
+ 1. **Access "My Orders":** Log in to your AuraCart account and go to "My Orders."
47
+ 2. **Select Order & Item:** Find the specific order and item you have an issue with.
48
+ 3. **Click "Return/Refund":** Select the option to initiate a return or refund request.
49
+ 4. **Choose Reason & Provide Details:** Select the most appropriate reason for your request (e.g., "Received damaged item," "Missing item," "Product not as described"). Provide a detailed explanation of the problem and upload all relevant supporting evidence (photos, videos, chat logs if applicable).
50
+ 5. **Submit Request:** Confirm and submit your request.
51
+
52
+ ### 2.3 Seller's Response and AuraCart Intervention
53
+
54
+ * **Seller Review:** The seller will be notified of your request and given a timeframe (e.g., 2-3 business days) to review it and propose a solution (e.g., approve return, offer partial refund, reject).
55
+ * **AuraCart Intervention (Dispute Resolution):**
56
+ * **Automatic Escalation:** If the seller fails to respond within the stipulated time, or if the buyer and seller cannot agree on a resolution, the case will automatically escalate to AuraCart's dispute resolution team.
57
+ * **Manual Escalation:** You can also manually escalate a case to AuraCart if you believe the seller's response is unsatisfactory or unreasonable, and the option becomes available after the initial communication period.
58
+ * **Investigation:** AuraCart's team will thoroughly review all evidence provided by both the buyer and the seller. They may also contact either party for further clarification or request additional evidence.
59
+ * **Decision:** Based on the investigation and AuraCart's policies, a final decision will be made. This decision is binding for both parties. Possible outcomes include:
60
+ * Full refund to the buyer.
61
+ * Partial refund to the buyer.
62
+ * Return of the item for a refund.
63
+ * Rejection of the refund/return request.
64
+
65
+ ### 2.4 Resolution and Follow-Up
66
+
67
+ * **Refund Processing:** If a refund is approved, it will be processed according to AuraCart's Returns and Refunds Policy (see `04_returns_and_refunds_en.md` for details on processing times).
68
+ * **Return Instructions:** If a return is required, clear instructions on how to ship the item back will be provided.
69
+ * **Communication:** You will receive notifications on the progress and final resolution of your dispute.
70
+
71
+ ## 3. Buyer and Seller Protection Program
72
+
73
+ AuraCart's Buyer/Seller Protection Program is designed to ensure a fair and secure trading environment for everyone on AuraMall.
74
+
75
+ ### 3.1 Buyer Protection
76
+
77
+ AuraCart is committed to protecting buyers from fraudulent sellers and ensuring they receive what they paid for.
78
+
79
+ * **Authenticity Guarantee:** AuraMall products are guaranteed to be authentic. If a buyer receives a counterfeit item from an AuraMall seller, they are entitled to a full refund.
80
+ * **Money-Back Guarantee:** Buyers are protected by a money-back guarantee if:
81
+ * The item does not arrive within the estimated delivery time frame.
82
+ * The item received is significantly not as described (e.g., wrong item, defective, damaged).
83
+ * The item received is incomplete (missing parts/accessories).
84
+ * **Secure Payment System:** AuraCart holds payments in escrow until the buyer confirms satisfactory receipt of the item, or the return window has passed. Funds are only released to the seller after successful delivery and buyer satisfaction.
85
+ * **Dispute Resolution Support:** Access to AuraCart's dispute resolution team to mediate and resolve conflicts between buyers and sellers.
86
+ * **Data Security:** Protection of personal and payment information through encryption and secure protocols.
87
+
88
+ ### 3.2 Seller Protection
89
+
90
+ AuraCart also protects sellers from fraudulent buyers and ensures fair play.
91
+
92
+ * **Proof of Delivery:** Sellers are protected against "item not received" claims when valid proof of delivery (tracking information provided by AuraCart's logistics partners) is available.
93
+ * **Return Policy Enforcement:** AuraCart enforces its return policy, ensuring that items returned by buyers meet the required conditions (e.g., original condition, all parts included).
94
+ * **Protection Against Abusive Returns:** Sellers are protected against buyers who abuse the return policy (e.g., returning a different item, significant damage not present at delivery, buyer-caused damage).
95
+ * **Secured Payouts:** Funds are released to sellers only after a successful transaction, minimizing risk from fraudulent payments.
96
+ * **Dispute Resolution Support:** Access to AuraCart's dispute resolution team to mediate conflicts and review evidence from both sides.
97
+ * **Community Guidelines:** Protection from abusive or inappropriate content/communication from buyers.
98
+
99
+ By leveraging these support channels and understanding the dispute resolution process, you can navigate any challenges confidently, knowing that AuraCart is dedicated to a secure and satisfactory experience for all users.
knowledge_base/v2_multilingual/09_customer_support_and_disputes_my.md ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Sokongan Pelanggan dan Penyelesaian Pertikaian
2
+
3
+ Di AuraCart, kami komited untuk menyediakan perkhidmatan pelanggan yang cemerlang dan memastikan proses yang adil dan cekap untuk menyelesaikan sebarang isu yang mungkin anda hadapi. Dokumen ini menggariskan cara menghubungi sokongan AuraCart, proses untuk menyelesaikan pertikaian berkaitan pesanan, dan memperincikan Program Perlindungan Pembeli/Penjual kami yang komprehensif.
4
+
5
+ ## 1. Cara Menghubungi Sokongan AuraCart
6
+
7
+ AuraCart menawarkan pelbagai saluran untuk anda menghubungi pasukan sokongan pelanggan kami.
8
+
9
+ ### 1.1 Pusat Bantuan dalam Aplikasi / Laman Web
10
+
11
+ * **Layan Diri:** Pusat Bantuan kami, yang boleh diakses melalui aplikasi AuraCart atau laman web, mengandungi perpustakaan besar soalan lazim (FAQ) dan artikel pangkalan pengetahuan (seperti yang ini!). Banyak pertanyaan umum boleh diselesaikan terus di sini.
12
+ * **Mencari Jawapan:** Gunakan bar carian dalam Pusat Bantuan untuk mencari artikel yang berkaitan dengan isu khusus anda (contohnya, "status pemulangan," "tambah nilai AuraWallet").
13
+
14
+ ### 1.2 Sokongan Sembang Langsung
15
+
16
+ * **Ketersediaan:** Sembang langsung biasanya adalah cara terpantas untuk mendapatkan bantuan daripada wakil khidmat pelanggan. Ia tersedia semasa waktu operasi tertentu, yang boleh didapati di Pusat Bantuan.
17
+ * **Akses:** Cari butang "Chat with Us" atau "Contact Support", biasanya terdapat dalam Pusat Bantuan atau bahagian "My Account" dalam aplikasi/laman web.
18
+ * **Berhubung dengan Ejen:** Anda mungkin terlebih dahulu berinteraksi dengan chatbot yang boleh menjawab soalan asas atau mengarahkan anda ke artikel yang berkaitan. Jika isu anda memerlukan bantuan manusia, chatbot akan membimbing anda untuk berhubung dengan ejen langsung.
19
+ * **Maklumat untuk Disediakan:** Sediakan ID pesanan anda, tangkapan skrin yang berkaitan, atau butiran khusus isu anda untuk mempercepatkan proses.
20
+
21
+ ### 1.3 Sokongan E-mel
22
+
23
+ * **Isu Tidak Mendesak:** Untuk perkara yang kurang mendesak atau pertanyaan yang memerlukan penjelasan terperinci dan lampiran, sokongan e-mel tersedia.
24
+ * **Cara Menghantar E-mel:** Hantar tiket atau hantar e-mel melalui borang "Contact Us" di Pusat Bantuan.
25
+ * **Masa Respons:** Respons e-mel biasanya mengambil masa 24-48 jam bekerja, bergantung pada jumlah pertanyaan.
26
+ * **Sertakan Butiran:** Sentiasa sertakan e-mel/telefon berdaftar AuraCart anda, ID pesanan (jika berkenaan), dan penerangan yang jelas dan terperinci tentang isu anda.
27
+
28
+ ### 1.4 Media Sosial (untuk Pertanyaan Umum)
29
+
30
+ * **Penglibatan Komuniti:** Saluran media sosial rasmi AuraCart boleh digunakan untuk pertanyaan umum, pengumuman, dan penglibatan komuniti.
31
+ * **Elakkan Maklumat Sensitif:** Jangan berkongsi butiran akaun peribadi atau sensitif melalui mesej langsung media sosial. Untuk isu akaun atau pesanan tertentu, sentiasa gunakan sembang dalam aplikasi/laman web atau sokongan e-mel atas sebab keselamatan.
32
+
33
+ ## 2. Proses Menyelesaikan Isu dengan Pesanan
34
+
35
+ AuraCart mempunyai proses berstruktur untuk mengendalikan isu berkaitan pesanan, memastikan keadilan untuk pembeli dan penjual.
36
+
37
+ ### 2.1 Sebelum Memulakan Pertikaian Formal
38
+
39
+ * **Hubungi Penjual Terlebih Dahulu (untuk isu bukan penghantaran/item):** Untuk isu seperti item hilang, produk salah diterima, atau item rosak, selalunya lebih baik untuk cuba berkomunikasi terus dengan penjual melalui fungsi sembang AuraCart terlebih dahulu. Banyak isu boleh diselesaikan dengan cepat melalui komunikasi langsung.
40
+ * **Berikan Bukti:** Sentiasa berikan bukti yang jelas (gambar, video) jika isu berkaitan dengan keadaan produk (contohnya, rosak, cacat, item salah).
41
+
42
+ ### 2.2 Memulakan Permintaan Pemulangan/Bayaran Balik
43
+
44
+ Jika komunikasi langsung dengan penjual tidak menyelesaikan isu tersebut, atau jika isu berkaitan dengan kualiti/keadaan produk, teruskan dengan permintaan pemulangan/bayaran balik formal.
45
+
46
+ 1. **Akses "My Orders":** Log masuk ke akaun AuraCart anda dan pergi ke "My Orders."
47
+ 2. **Pilih Pesanan & Item:** Cari pesanan dan item khusus yang anda mempunyai isu dengannya.
48
+ 3. **Klik "Return/Refund":** Pilih pilihan untuk memulakan permintaan pemulangan atau bayaran balik.
49
+ 4. **Pilih Sebab & Berikan Butiran:** Pilih sebab yang paling sesuai untuk permintaan anda (contohnya, "Menerima item rosak," "Item hilang," "Produk tidak seperti yang diterangkan"). Berikan penjelasan terperinci mengenai masalah tersebut dan muat naik semua bukti sokongan yang relevan (gambar, video, log sembang jika berkenaan).
50
+ 5. **Hantar Permintaan:** Sahkan dan hantar permintaan anda.
51
+
52
+ ### 2.3 Respons Penjual dan Campur Tangan AuraCart
53
+
54
+ * **Semakan Penjual:** Penjual akan dimaklumkan mengenai permintaan anda dan diberikan tempoh masa (contohnya, 2-3 hari bekerja) untuk menyemaknya dan mencadangkan penyelesaian (contohnya, meluluskan pemulangan, menawarkan bayaran balik separa, menolak).
55
+ * **Campur Tangan AuraCart (Penyelesaian Pertikaian):**
56
+ * **Eskalasi Automatik:** Jika penjual gagal bertindak balas dalam tempoh masa yang ditetapkan, atau jika pembeli dan penjual tidak dapat mencapai persetujuan mengenai penyelesaian, kes akan secara automatik dieskalasi kepada pasukan penyelesaian pertikaian AuraCart.
57
+ * **Eskalasi Manual:** Anda juga boleh secara manual mengeskalasi kes kepada AuraCart jika anda percaya respons penjual tidak memuaskan atau tidak munasabah, dan pilihan tersebut akan tersedia selepas tempoh komunikasi awal.
58
+ * **Siasatan:** Pasukan AuraCart akan menyemak dengan teliti semua bukti yang diberikan oleh pembeli dan penjual. Mereka juga mungkin menghubungi mana-mana pihak untuk penjelasan lanjut atau meminta bukti tambahan.
59
+ * **Keputusan:** Berdasarkan siasatan dan dasar AuraCart, keputusan akhir akan dibuat. Keputusan ini mengikat kedua-dua pihak. Hasil yang mungkin termasuk:
60
+ * Bayaran balik penuh kepada pembeli.
61
+ * Bayaran balik separa kepada pembeli.
62
+ * Pemulangan item untuk bayaran balik.
63
+ * Penolakan permintaan bayaran balik/pemulangan.
64
+
65
+ ### 2.4 Resolusi dan Tindakan Susulan
66
+
67
+ * **Pemprosesan Bayaran Balik:** Jika bayaran balik diluluskan, ia akan diproses mengikut Dasar Pemulangan dan Bayaran Balik AuraCart (lihat `04_returns_and_refunds_en.md` untuk butiran mengenai masa pemprosesan).
68
+ * **Arahan Pemulangan:** Jika pemulangan diperlukan, arahan yang jelas mengenai cara menghantar semula item akan diberikan.
69
+ * **Komunikasi:** Anda akan menerima pemberitahuan mengenai kemajuan dan penyelesaian akhir pertikaian anda.
70
+
71
+ ## 3. Program Perlindungan Pembeli dan Penjual
72
+
73
+ Program Perlindungan Pembeli/Penjual AuraCart direka untuk memastikan persekitaran perdagangan yang adil dan selamat untuk semua orang di AuraMall.
74
+
75
+ ### 3.1 Perlindungan Pembeli
76
+
77
+ AuraCart komited untuk melindungi pembeli daripada penjual penipu dan memastikan mereka menerima apa yang mereka bayar.
78
+
79
+ * **Jaminan Ketulenan:** Produk AuraMall dijamin ketulenannya. Jika pembeli menerima item tiruan daripada penjual AuraMall, mereka berhak mendapat bayaran balik penuh.
80
+ * **Jaminan Wang Dikembalikan:** Pembeli dilindungi oleh jaminan wang dikembalikan jika:
81
+ * Item tidak tiba dalam tempoh masa penghantaran yang dianggarkan.
82
+ * Item yang diterima adalah tidak seperti yang diterangkan secara signifikan (contohnya, item salah, cacat, rosak).
83
+ * Item yang diterima tidak lengkap (bahagian/aksesori hilang).
84
+ * **Sistem Pembayaran Selamat:** AuraCart memegang pembayaran dalam escrow sehingga pembeli mengesahkan penerimaan item yang memuaskan, atau tempoh pemulangan telah berlalu. Dana hanya akan dilepaskan kepada penjual selepas penghantaran yang berjaya dan kepuasan pembeli.
85
+ * **Sokongan Penyelesaian Pertikaian:** Akses kepada pasukan penyelesaian pertikaian AuraCart untuk menjadi pengantara dan menyelesaikan konflik antara pembeli dan penjual.
86
+ * **Keselamatan Data:** Perlindungan maklumat peribadi dan pembayaran melalui penyulitan dan protokol selamat.
87
+
88
+ ### 3.2 Perlindungan Penjual
89
+
90
+ AuraCart juga melindungi penjual daripada pembeli penipu dan memastikan permainan yang adil.
91
+
92
+ * **Bukti Penyerahan:** Penjual dilindungi daripada tuntutan "item tidak diterima" apabila bukti penyerahan yang sah (maklumat penjejakan yang disediakan oleh rakan kongsi logistik AuraCart) tersedia.
93
+ * **Penguatkuasaan Dasar Pemulangan:** AuraCart menguatkuasakan dasar pemulangan, memastikan item yang dipulangkan oleh pembeli memenuhi syarat yang diperlukan (contohnya, keadaan asal, semua bahagian disertakan).
94
+ * **Perlindungan Terhadap Pemulangan Berlebihan:** Penjual dilindungi daripada pembeli yang menyalahgunakan dasar pemulangan (contohnya, memulangkan item yang berbeza, kerosakan signifikan yang tidak wujud semasa penyerahan, kerosakan yang disebabkan oleh pembeli).
95
+ * **Bayaran Terjamin:** Dana dilepaskan kepada penjual hanya selepas transaksi yang berjaya, meminimumkan risiko daripada pembayaran penipuan.
96
+ * **Sokongan Penyelesaian Pertikaian:** Akses kepada pasukan penyelesaian pertikaian AuraCart untuk menjadi pengantara konflik dan menyemak bukti dari kedua-dua belah pihak.
97
+ * **Garis Panduan Komuniti:** Perlindungan daripada kandungan/komunikasi yang menyalahgunakan atau tidak sesuai daripada pembeli.
98
+
99
+ Dengan memanfaatkan saluran sokongan ini dan memahami proses penyelesaian pertikaian, anda boleh menavigasi sebarang cabaran dengan yakin, mengetahui bahawa AuraCart berdedikasi untuk pengalaman yang selamat dan memuaskan untuk semua pengguna.
requirements.txt CHANGED
Binary files a/requirements.txt and b/requirements.txt differ
 
v1_malay_selfhosted/.gitattributes ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pt filter=lfs diff=lfs merge=lfs -text
22
+ *.pth filter=lfs diff=lfs merge=lfs -text
23
+ *.rar filter=lfs diff=lfs merge=lfs -text
24
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
25
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
26
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar filter=lfs diff=lfs merge=lfs -text
28
+ *.tflite filter=lfs diff=lfs merge=lfs -text
29
+ *.tgz filter=lfs diff=lfs merge=lfs -text
30
+ *.wasm filter=lfs diff=lfs merge=lfs -text
31
+ *.xz filter=lfs diff=lfs merge=lfs -text
32
+ *.zip filter=lfs diff=lfs merge=lfs -text
33
+ *.zst filter=lfs diff=lfs merge=lfs -text
34
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ *.faiss filter=lfs diff=lfs merge=lfs -text
36
+ *.docx filter=lfs diff=lfs merge=lfs -text
37
+ faiss_malay_ecommerce_kb_index/index.faiss filter=lfs diff=lfs merge=lfs -text
38
+ faiss_malay_ecommerce_kb_index/index.pkl filter=lfs diff=lfs merge=lfs -text
v1_malay_selfhosted/.gitignore ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environments
2
+ p3env/
3
+ venv/
4
+ env/
5
+
6
+ # Python cache and compiled files
7
+ __pycache__/
8
+ *.pyc
9
+ *.pyo
10
+ *.pyd
11
+
12
+ # Jupyter Notebook checkpoints
13
+ .ipynb_checkpoints/
14
+
15
+ # Distribution / packaging
16
+ *.egg-info/
17
+ dist/
18
+ build/
19
+ wheels/
20
+ *.tar.gz
21
+ *.whl
22
+
23
+ # Logs and reports
24
+ *.log
25
+ *.html # Ignore generated reports like profiling
26
+
27
+ # IDE / OS specific
28
+ .vscode/
29
+ .idea/
30
+ *.DS_Store
31
+ Thumbs.db
32
+
33
+ # Output directories / Large Files (IGNORED)
34
+ malay-qa-model-finetuned/ # Ignore large saved fine-tuned model
35
+ models/ # Generic models folder often ignored
36
+ # *.joblib # Ignore generic joblib files (like from P1)
37
+ # *.pkl # Ignore generic pickle files
38
+ .hf_cache_st/ # Ignore downloaded embedding model cache
39
+ .cache_st/ # Ignore downloaded embedding model cache (alternative name used)
40
+ .dvc/cache # Ignore DVC cache if DVC is used
41
+
42
+ # --- Files/Folders to *KEEP* for P3 Deployment ---
43
+ # Ensure these lines are COMMENTED OUT or DELETED:
44
+ # faiss_malay_ecommerce_kb_index/
45
+ # knowledge_base/
46
+ # squad_format_qa_pairs.json # Keep the source data JSON
47
+ # ecommerce_malay_qa.csv # Keep source data CSV (optional if JSON is primary)
48
+
49
+ # --- Other Ignores ---
50
+ # *.zip # Keep commented if you might commit small zip files
51
+ # *.png # Keep commented if you need specific image assets in repo
52
+ # *.jpg # Keep commented if you need specific image assets in repo
53
+ # app_old.py # Good to ignore backups
54
+ # app_v*.py # Good to ignore backups
55
+
56
+ # Add these cache folders
57
+ .cache_st/
58
+ .hf_cache_st/
59
+ .hf_cache_st_test/
60
+
61
+ # Add model output
62
+ malay-qa-model-finetuned/
63
+
64
+ # Add archives and specific media/temp files if not covered by *.ext
65
+ *.zip
66
+ *.png
67
+ *.jpg
68
+ Untitled.ipynb
69
+ app_old.py
70
+ app_v*.py # Covers app_v2.py, app_v3.2.py etc.
71
+ drive1.png
72
+ ecommerce_malay_qa.csv # Ignore CSV if JSON is source
73
+ first*.png
74
+ hf*.png
75
+ inspo*.png
76
+ latest*.png
77
+ new*.png
78
+ revolab*.png
79
+ streamlit*.png
80
+ ui*.jpg
81
+ uiux*.png
82
+ app_v3.py
83
+ app_new.py
84
+
85
+ # Ensure these are still ignored
86
+ p3env/
87
+ __pycache__/
88
+ *.pyc
89
+ # Ensure these are NOT ignored (remove lines if present)
90
+ # faiss_malay_ecommerce_kb_index/
91
+ # knowledge_base/
92
+
93
+ # Ignore old app versions/duplicates
94
+ app2.py
95
+ app_v*.py
96
+ *_needtofix.py
97
+ *_testing.py
98
+
99
+ # Ignore temporary/debug scripts
100
+ debug_*.py
101
+ custom_embedder.py # Assuming this was temporary
102
+
103
+ # Ignore copies
104
+ *Copy.txt
105
+ *copy.txt
106
+
107
+ # Ignore other potentially unwanted files/folders
108
+ # Add anything else specific here
109
+
110
+ # --- Ensure these are NOT ignored ---
111
+ # Make sure lines starting with '#' are before these if they existed:
112
+ # !faiss_malay_ecommerce_kb_index/ # Example if it was ignored before
113
+ # !knowledge_base/
114
+
115
+ # Ignore temporary/debug scripts
116
+ # debug_*.py
117
+ # custom_embedder.py
118
+
119
+ # Ignore copies
120
+ *Copy.txt
121
+
122
+ # Ignore old app versions if any (based on previous issues)
123
+ app_v*.py
124
+ *_testing.py
125
+ app2.py # If this was an old version
126
+
127
+
128
+ # --- Ensure essential files/folders are NOT ignored ---
129
+ !app.py
130
+ !reindex.py
131
+ !01-FineTuning-QA.ipynb
132
+ !02-RAG-Pipeline.ipynb
133
+ !requirements.txt
134
+ !README.md
135
+ !faiss_malay_ecommerce_kb_index/
136
+ !knowledge_base/
137
+ !squad_format_qa_pairs.json
138
+ !ecommerce_malay_qa.csv
139
+ #.gitattributes # Usually added by LFS, not manual ignore
140
+
141
+ /p3env2/
142
+ p3env2/
143
+
144
+ .mailmap
01-FineTuning-QA.ipynb β†’ v1_malay_selfhosted/01-FineTuning-QA.ipynb RENAMED
File without changes
02-RAG-Pipeline.ipynb β†’ v1_malay_selfhosted/02-RAG-Pipeline.ipynb RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/Pasted Content.txt RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/create_squad_format.py RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/lazada_content.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/lazada_content_malay .txt RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/lazada_content_malay.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/organized_content.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/qa_pairs_malay.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/shopee_content.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/shopee_content_malay -.txt RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/shopee_content_malay.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/squad_format_qa_pairs.csv RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/squad_format_qa_pairs.json RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/todo.md RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/translate_content.py RENAMED
File without changes
{2-Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/2-Source Selection and QA Pair Creation Guide}/translated_content.md RENAMED
File without changes
{Source Selection and QA Pair Creation Guide β†’ v1_malay_selfhosted/Source Selection and QA Pair Creation Guide}/Pasted Content.txt RENAMED
File without changes