diff --git a/frontend/src/routes/pricing.tsx b/frontend/src/routes/pricing.tsx index 25b8f67da..79a762b15 100644 --- a/frontend/src/routes/pricing.tsx +++ b/frontend/src/routes/pricing.tsx @@ -14,6 +14,21 @@ import { Switch } from "@/components/ui/switch"; import { type } from "@tauri-apps/plugin-os"; import { PRICING_PLANS } from "@/config/pricingConfig"; +// File type constants for upload features +const SUPPORTED_IMAGE_FORMATS = [".jpg", ".png", ".webp"]; +const SUPPORTED_DOCUMENT_FORMATS = [ + ".pdf", + ".doc", + ".docx", + ".txt", + ".rtf", + ".xlsx", + ".xls", + ".pptx", + ".ppt", + ".md" +]; + type PricingSearchParams = { selected_plan?: string; success?: boolean; @@ -116,6 +131,36 @@ function PricingFAQ() {

+
+ + Which file types are supported for document and image upload? + +
+

We support a range of file types with potential to add more in the future.

+
+ Images: +
    + {SUPPORTED_IMAGE_FORMATS.map((format) => ( +
  • + {format} +
  • + ))} +
+
+
+ Documents: +
    + {SUPPORTED_DOCUMENT_FORMATS.map((format) => ( +
  • + {format} +
  • + ))} +
+
+

There is a 1 file limit per chat prompt with a 5MB file size limit per file.

+
+
+
How did you build this?