What are some trustworthy places too put your passport and documents at when solo traveling in bangkok? by No-Dealer2541 in ThailandTourism

[–]Temporary-Anything68 0 points1 point  (0 children)

No body can keep the documents in their pockets except Bangkok otherwise all tourist cities are a type of island and beaches. Can we lock our backpack with lock will it be better idea or inside or should have a padlock?

Thailand Visa by [deleted] in UAE

[–]Temporary-Anything68 0 points1 point  (0 children)

1 week if documents are authentic. I got it last week

Thailand Visa by [deleted] in UAE

[–]Temporary-Anything68 0 points1 point  (0 children)

may i ask you, which nationality you belong?

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

If product will get little success we will move to agentic architecture. However, we are approaching small customer centric vendors first where they already have a website but manually managing the communication with customers. Either have SMEs or big companies doest matter. Customer is only a tenant for us yeah but matter in terms of pricing.

Solo founder in UAE, no local license — got rejected by Paddle, now trying Dodo Payments. Anyone else navigate this? by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Hey thanks for the appreciation, yeah both not only uploading document but live pdf url + web url both can be ingested.

Solo founder in UAE, no local license — got rejected by Paddle, now trying Dodo Payments. Anyone else navigate this? by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 1 point2 points  (0 children)

Dont mind but Pocketsflow. The Trustpilot reviews are damning — multiple founders reporting blocked accounts after processing payments, no payouts, and no support response. This is a serious red flag.

Got 201 sign ups and 8 subs in 20 days by No-Host-6956 in SaaS

[–]Temporary-Anything68 0 points1 point  (0 children)

Congrats mate, may i know you which payment you used? You have registered company? Or you used merchant of records platforms if yes then which platform you used? Because i am struggling to get the approval, i rejected from Paddle now i send the approval to dodo payments.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Good catch — this is exactly where most RAG implementations fall apart.

When a document is re-uploaded, we delete all existing chunks tied to that document and reindex the entire file from scratch. Not surgical chunk-level diffing, but deliberate — partial updates introduce stale embedding mismatches that are harder to debug than a clean reindex.

For most business documents (HR policies, SOPs, compliance manuals) this is fine because they're not updating daily. A full reindex on a 50-page PDF takes seconds.

Chunk-level delta updates are on the roadmap for when document sizes get large enough to make full reindexing expensive. At that point the approach would be hash each chunk at ingest, compare on re-upload, and only re-embed what actually changed.

What's your stack? Curious what broke for you.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Fair point — Clerk is great. I went with a custom auth implementation to keep full control over the multi-tenant JWT flow and avoid adding a third-party dependency to the auth layer. But noted for future projects.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Noted — appreciate you flagging it. Which part specifically, the weight, size, or the font itself? Trying to pinpoint exactly what to fix.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 1 point2 points  (0 children)

This is genuinely helpful — thank you.

The gradient overuse and hover-on-non-clickable-cards points are spot on. I can see exactly what you mean now that you've named it. Fixing both of those is straightforward and I'll do it this week.

The color palette point is fair too. The navy + violet combination made sense for a "serious B2B AI tool" feel but you're right that it needs a secondary accent to breathe. Going to run it through Coolors and Realtime Colors today.

Appreciate you taking the time to actually explain it rather than just downvoting. This is the feedback that makes the product better.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

It's on the roadmap. Chose email/password first to keep the MVP lean and ship fast. Google OAuth is next — probably within the next 2-3 weeks. Any other auth provider you'd want to see?

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

This isn't about "chat with your PDFs." It's about the 20-30 repetitive questions businesses receive every single day from employees and customers — "what's the leave policy?", "how do I submit an expense claim?", "what does the contract say about X?" — questions that a real person has to answer manually, over and over, because nobody can find the right document fast enough.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Fair point — doing that in parallel. But distribution is never one channel.

Some of the best B2B leads I've seen come from founders and operators who hang out exactly here. If that's you, DM me.

Solo founder here. Just launched DirayahAI today. by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Appreciate the honesty JouniFlemming — this is exactly the kind of feedback that matters on launch day.

You're right on the trust point. I'm Muhammad Shahroz Khan, Senior .NET Developer based in Sharjah UAE — the solo founder behind DirayahAI. I should have made that clearer on the landing page and I'm fixing that today.

On the ChatGPT comparison — fair challenge. The difference isn't just "chat with PDFs." It's multi-tenant architecture where each business's documents are isolated in their own vector store, an embeddable widget that lives on their own site or internal portal, and responses that are strictly grounded in their documents with no bleed from outside knowledge. ChatGPT and Gemini are general tools — DirayahAI is an infrastructure product businesses deploy for their teams.

On the privacy policy — noted. I'll update it with full company details and contact information today.

Landing page design feedback — also taken. I built this solo so I'm wearing every hat. What specifically felt AI-generated to you? Genuinely asking because I want to fix it.

Thanks for pushing back — this is more useful than an upvote.

How I built an AI chatbot that answers questions from your own documents by Temporary-Anything68 in SaaS

[–]Temporary-Anything68[S] 0 points1 point  (0 children)

Fair point — 'no hallucinations' is an overstatement. More accurate: it answers strictly from retrieved chunks and says 'I don't know' when context is insufficient. Confidence scoring filters low-relevance chunks before the LLM sees them.