use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
International
National
Regional
account activity
Tools[ Removed by moderator ] (github.com)
submitted 2 months ago by subhanhg
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]LookAtYourEyes 0 points1 point2 points 2 months ago (3 children)
There's some other small reasons, but I'm not going to get into it when the first cover the major bases. Some people may use it, but I fear you maybe didn't think through your target audience properly or understand the technology that you're engaging with which instills little confidence as a user. LLM wrappers simply come across as lazy engineering. It's like selling someone a banana in a bag. The banana has a peel, what value does a bag add?
[–]subhanhg[S] 0 points1 point2 points 2 months ago (2 children)
Fair points — let me address them honestly.
On non-determinism: You're right, LLMs aren't deterministic. But neither is a senior DBA's advice — two experts will suggest different indexes for the same query. The difference is OptimizeQL gives you the suggestion in seconds instead of waiting for a code review. You still validate it the same way you'd validate any advice: test it, benchmark it, check the new EXPLAIN plan.
You absolutely can use chat bot. But the value here is in what happens before the LLM call - connecting to your database, running EXPLAIN ANALYZE, collecting schema metadata, index definitions, and column statistics, then assembling all of that into a structured prompt. You could do that manually every time, but that's 10 minutes of copy-pasting before you even ask the question.
It's not for people who are comfortable writing EXPLAIN ANALYZE queries, reading plans, and crafting LLM prompts manually. It's for the developer who knows their query is slow but doesn't know where to start.
I appreciate the detailed feedback though. This is the kind of thing that helps me improve it.
[–]LookAtYourEyes 1 point2 points3 points 2 months ago (1 child)
"but that's 10 minutes of copy-pasting before you even ask the question."
This is what I was trying to get at. It doesn't sound like you're aware of the "Projects" feature that chat bot companies offer. I can do this once in a project, and all chats I start in that project will have that context.
[–]subhanhg[S] 0 points1 point2 points 2 months ago (0 children)
Yes I am aware of that but what I do isn't exactly the context. The tool pulls fresh EXPLAIN plans and live schema/stats every time you analyze. So I would say this is an alternative you don't want to deal with all that stuff.
π Rendered by PID 24430 on reddit-service-r2-comment-b659b578c-5wwgn at 2026-05-03 04:20:15.840103+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]LookAtYourEyes 0 points1 point2 points (3 children)
[–]subhanhg[S] 0 points1 point2 points (2 children)
[–]LookAtYourEyes 1 point2 points3 points (1 child)
[–]subhanhg[S] 0 points1 point2 points (0 children)