You explain complex topics in simple, step-by-step videos. Truly impressive! This channel deserves way more recognition!
@CodeWithAarohiАй бұрын
Thank you! I’m glad my videos are helpful. Your support means a lot!
@yasutakaueda39285 ай бұрын
Integrating database data with LLMs greatly expands the range of applications. Thank you for providing such valuable information.
@CodeWithAarohi5 ай бұрын
Glad it was helpful!
@tech_devsecops5 ай бұрын
Ma'am you demonstrated this in a really simple and great way.
@CodeWithAarohi5 ай бұрын
Thanks a lot 😊
@architectingme2 ай бұрын
Thank you for sharing. I will try this on SQL server
@CodeWithAarohi2 ай бұрын
Good luck!
@aminelongo2425 ай бұрын
Really helpful video ! Thank you Aarohi
@CodeWithAarohi5 ай бұрын
My pleasure 😊
@Pallavi9187Ай бұрын
Mam love u so much 😭
@soravsingla87822 ай бұрын
Phenomenal
@careersuccessng36783 ай бұрын
Great Job Aarohi! How about connecting to MS SQL server used by most enterprises
@abdulqayyumshah92172 ай бұрын
Amazing!
@CodeWithAarohi2 ай бұрын
Thank you!
@19saikalyan8422 күн бұрын
Hello Can't we do directly by uploading the datasets in an csv file in the sql workbench hope you react to this.....!!
@muhammadahsan2751Ай бұрын
I tried these steps with MSSQL Server and found below error, Could you please help to resolve this. chain = create_sql_query_chain(llm, db) The error i get is very long but at the end it says TypeError: Expected a Runnable, callable or dict.Instead got an unsupported type:
@DevShahin-zm8ni3 ай бұрын
I want to make a report generating software using LLM on my ERP where nearly 200 tables are exists. In my report generating software I give a propmt and LLM will analysis this promps and make a sql query on the basis of my ERP databases. Can I do it using this procedure?
@eneso86572 ай бұрын
Do you know how can add memory to sql agent ? I have tried some ways but I could’nt
@amrzakaria52905 ай бұрын
Thanks a lot , Can you connect to PostgreSQL DB ,Pls give me steps.
@CodeWithAarohi5 ай бұрын
pip install langchain psycopg2 import psycopg2 from langchain import LangChain # Connect to your PostgreSQL database conn = psycopg2.connect( dbname="demodb", user="root", password="root123", host="localhost", port="5432" )
@amrzakaria52905 ай бұрын
Thanks.
@oscarpirateman3 ай бұрын
Is anybody else getting an error when running the line: chain = create_sql_query_chain(llm, db) The error i get is very long but at the end it says TypeError: Expected a Runnable, callable or dict.Instead got an unsupported type: I cant find any solution for it
@muhammadahsan2751Ай бұрын
Yes, The same error is appearing while i am trying execute the code,
@vickyrajeev98215 ай бұрын
Thanks
@Beliver5894-l8h2 ай бұрын
how can we get final response in full sentence eg: the total customer count is --- can you also include some prompt engg technique
@CodeWithAarohi2 ай бұрын
I will cover this in my upcoming videos.
@Beliver5894-l8h2 ай бұрын
@@CodeWithAarohi thank you..will be helpful
@rishabhsheoran69594 ай бұрын
Hey Aarohi! How do we handle the cases where the LLM generates a wrong query other than exception handling?
@CodeWithAarohi4 ай бұрын
You can train your LLM for such queries using few-shot learning.
@mrnayan_277524 күн бұрын
Hello I'm facing some error with the tiktoken package.
@CodeWithAarohi23 күн бұрын
what is the error?
@arnavthakur54093 ай бұрын
Ma'am is there any possibility of getting trained under you as we are a group of 8 professionals working with an IT company
@CodeWithAarohi3 ай бұрын
Please email me at aarohisingla1987@gmail.com
@hendoitechnologies4 ай бұрын
kindly post video about Claude 3.5 sonnet API video for developers
@CodeWithAarohi4 ай бұрын
Noted!
@harshitdtu74794 ай бұрын
i am not able to connect by db can u please help me
@CodeWithAarohi4 ай бұрын
Share the error
@mudgilgaurav13 күн бұрын
Thanks for the walkthrough, it's very useful for beginners. I installed all dependencies using the requirement.txt which installs langchain 0.0.284 and I have python 3.11, while creating the SQL chain I am getting following issue #Convert question to SQL query from langchain.chains import create_sql_query_chain chain = create_sql_query_chain(llm, db) Error - TypeError: Expected a Runnable, callable or dict.Instead got an unsupported type: