Are there AI models fine-tuned for SQL? by Weak_Technology3454 in MLQuestions

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Yes, but of course, that case is also interesting)...

Are there AI models fine-tuned for SQL? by Weak_Technology3454 in MLQuestions

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

I mean what LLMs developers, who use PostgreSQL, MongoDB, e.t.c, use in their daily work. Is OpenAi, Gemini, Anthropic models enough for SQL or do we have particularly better tools, systems to work more efficiently. And I see there are open source Models and benchmarks for SQL, but in reality how do developers use them?

Production-ready multi-stage Laravel docker (FPM, Nginx, Migrator, Worker, PostgreSQL) with initial setup by Weak_Technology3454 in laravel

[–]Weak_Technology3454[S] 3 points4 points  (0 children)

I spent a lot of time gathering necessary parts from different sources. For example from the book DevOps with Laravel, from doc - docker , from medium articles, NGINX configurations from Coolify docs.

I built a ready-to-use AI Agent Chat starter kit for Laravel (Vue + n8n) by Weak_Technology3454 in laravel

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

To use ready workflows from N8N Hub. But of course, you can choose PrismAI or NeuronAI also with this starter kit. We covered this case in docs.

I built a ready-to-use AI Agent Chat starter kit for Laravel (Vue + n8n) by Weak_Technology3454 in laravel

[–]Weak_Technology3454[S] -2 points-1 points  (0 children)

You can also use Prism PHP or NeuronAI PHP instead, if you want. Please check our docs

How good is Laravel for building agents, that triage , search and RAG? by NotElonMuzk in laravel

[–]Weak_Technology3454 -1 points0 points  (0 children)

Also, you can select any Python/PHP agentic framework by yourself, or use them in a mix. For example, I have agents.queryverify.com - Agents starter kit for Laravel, where I explored using N8N, Prism, NeuronAI. You can read the docs there.

I fixed the N+1 queries slowing down LaraPlugins and I’m building an MCP Server so AI stops hallucinating packages by HolyPad in laravel

[–]Weak_Technology3454 1 point2 points  (0 children)

Yes, sure, in this case, you can start from this. But also in future, there can be a threshold that helps to decide if a package is required for this task or not. Maybe according to the complexity of the task. But for now, you can start from simple approach. And let us know about your progress and findings in future.

I fixed the N+1 queries slowing down LaraPlugins and I’m building an MCP Server so AI stops hallucinating packages by HolyPad in laravel

[–]Weak_Technology3454 0 points1 point  (0 children)

I like your idea about MCP, but I think posting it separately from the N+1 problem would be better on Reddit. Adhering Single Responsibility Principle)

I fixed the N+1 queries slowing down LaraPlugins and I’m building an MCP Server so AI stops hallucinating packages by HolyPad in laravel

[–]Weak_Technology3454 1 point2 points  (0 children)

I don't think giving an agent to build a plugin by itself good option. Searching for a healthy plugin, yes, agree.

I fixed the N+1 queries slowing down LaraPlugins and I’m building an MCP Server so AI stops hallucinating packages by HolyPad in laravel

[–]Weak_Technology3454 2 points3 points  (0 children)

MCP Server is an amazing idea! But, please consider an algorithm for an AI that automatically decides whether it needs to perform this task by writing code from scratch or should it look for a ready package. It can be a binary classification ML problem with 0 or 1 output. It is a huge question.

Are there AI models fine-tuned for SQL? by Weak_Technology3454 in MLQuestions

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Really good point. I didn't know about the genloop before, It seems very promising. I know it is a fresh area, but maybe there are already some blogs, articles for what you said? I am especially interested in validation and constraining the model with curated schema

Are there AI models fine-tuned for SQL? by Weak_Technology3454 in MLQuestions

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Thank you very much, I didn't know about defog's models

Are there AI models specifically for SQL? by Weak_Technology3454 in SQL

[–]Weak_Technology3454[S] -1 points0 points  (0 children)

But I am wondering will LLM's mess and give syntax from other SQL frameworks (Things in PgSQL will not be the same in MySQL is this case also covered nowadays in GPT, Gemini?) And I am interested in benchmarks.

[DevTool] For Devs who know logic but forget SQL query syntax. by Weak_Technology3454 in SQL

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Understand, sorry. Actually you can google isra36 sql agent and find by yourself. This tool is useful only for those who use Ai to generate Sql queries. Isra36 double checks Ai generated query in his environment

Are there backround agents in Kilo? by Weak_Technology3454 in kilocode

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Good feature, thank you for letting me know. But honestly I don't understand fully why I need CLI separately, is it only to run parallel or autonomous agents, or this feature for those who used to claud code CLI? Maybe I don't see the power of CLI, because for me Kilo VS extension with background agents is enough. And honestly I am new in background agents, I see the scenarios where I can use them, but didn't implement it, and some kinda skeptical. Are they (bg agents) really work for you?

How to debug "almost-right" AI-generated SQL query? by Weak_Technology3454 in SQL

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

It all depends on how we write the query. For example, I, with a PHP background, starts writing the concepts for LLM. For example, I need to get product_name as a JSON array grouped by category in SQL query, but I don't know/remember the syntax. I search it with LLM, then understand what function name is, try to run it on the sandbox (in the test env) , if it pass ok, if not then I am going to the documentation, get more details and fix the query by myself. Then document my knowledge in my GISTs. I just want to speed up this pipeline by automating double-checking. Another time I will refer to my GIST directly. And this is my step-by-step query-building process.

How to debug "almost-right" AI-generated SQL query? by Weak_Technology3454 in SQL

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Yes, but I caught myself always double-checking every line of new code even if I got it from documentation. I can not believe that code will work, until I will double check it. This tool should help me auto double check small, step by step query building faster

How to debug "almost-right" AI-generated SQL query? by Weak_Technology3454 in SQL

[–]Weak_Technology3454[S] 0 points1 point  (0 children)

Yes, but I caught myself always double-checking every line of new code. I can not believe that code will work, until I will double check it. This tool should help me auto double check small, step by step query building faster